envoi de mail html avec piece jointe

envoi de mail html avec piece jointe - Perl - Programmation

Marsh Posté le 01-12-2005 à 08:54:56    

Bonjour, je veux envoyer un mail au format html et avec une piece jointe  
 
j'y arrive séparement mais ensemble j'ai essayé ceci mais ça ne fonctionne pas.  
 

Code :
  1. $Message = new MIME::Lite
  2.         From =>'tata',
  3.         Bcc =>'totot@toto.com',
  4.         Subject =>'essai envoi  ',
  5.         Type =>'multipart/mixed';
  6. # texte mail
  7. attach $Message
  8.        Type =>'TEXT',
  9.        Data =>$corps_mail;
  10.        $Message->attr("content-type" => "text/html; charset=iso-8859-1" );
  11. # piece jointe
  12. attach $Message
  13.    Type =>'page/html',
  14.    Path =>'mapage.htm',
  15.    Filename =>'mapage.htm';
  16. # envoi
  17. $Message->send;


 
 
le mieux que j'ai réussi a avoir c'est le corps du mail non interprété et la piece jointe.  
 
merci

Reply

Marsh Posté le 01-12-2005 à 08:54:56   

Reply

Marsh Posté le 02-12-2005 à 14:17:30    

personne?
 
 
 
 

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed