Génère un email au format EML
GénèreEML(< Expéditeur >, < Destinataires >, < Sujet >, < Corps > [, < Pièce jointe 1 >, [, < Pièce jointe 2 > ....]])
Attention : cela n'envoie pas l'email.
GenèreEML("ninon@nout.fr", "gobeline_killer"+"@"+"yahoo.com", "un test", LitFichier("C:\ClientWeb\LogCopyV.txt"))
GenèreEML("ninon@nout.fr", "gobeline_killer"+"@"+"yahoo.com", "un test", "mini contenu")
Génère un email au format EML
GénèreEML(< Mot clé > : < Valeur > [, < Mot clé > : < Valeur > ...])
ÉcritFichier( "C:\Temp\email.eml"
, GénèreEML( "exp" : "ninon@nout.fr"
, "to" : "dest1"+"@"+"gmail.com"
, "to" : "dest2@gmail.com"
, "sujet" : "un test"
, "text" : LitFichier( "C:\ClientWeb\LogCopyV.txt" )
, "pj" : "D:\Temp\Colonne Champ.rouge.html"
, "pj" : "D:\Temp\Colonne Champ.rouge2.html"
) )