Bonjour,
J'essaie d'envoyer un mail avec l'api de MailJet. voici ce que je fait:
"-X POST"& " " &
"--user " & Citation ( $token & ":" & $key ) & " " &
"-H " & Citation ( "Content-Type: application/json" )& " " &
"-d " & Citation ( JSONSetElement
( "" ;
["Messages[0].From.Email";$MailUtilisateur;JSONString];
["Messages[0].From.Name";$NomUtilisateur;JSONString];
["Messages[0].To[0].Email";$to;JSONString];
["Messages[0].To[0].Name";Liste ( name::name );JSONString];
["Messages[0].Subject";mai::text;JSONString];
["Messages[0].TextPart";"salut tout le monde";JSONString];
["Attachments[0].ContentType";"text/plain";JSONString];
["Attachments[0].Filename";$DocName;JSONString];
["Attachments[0].Base64Content";$Doc;JSONString]
))& " " &
Le mail part bien. Ma pièce jointe non. Elle est bien codé en Base 64enCode.
Comment puis-je Faire ?