Header avec JMail

Header avec JMail - ASP - Programmation

Marsh Posté le 18-11-2005 à 10:30:19    

Bonjour,
 
J'utilise JMail pour adresser des messages depuis mes programmes ASP. RAS  :)  
Toutefois, j'aimerai adresse des Mail au format HTML et non pas en Texte Brut.
Savez vou comment modifier le Header du Mail ???
 
 
Par avance merci.
 

Reply

Marsh Posté le 18-11-2005 à 10:30:19   

Reply

Marsh Posté le 18-11-2005 à 11:12:18    

Et l'aide de Jmail elle sert à quoi ? une petite recherche sur Google et zou un exemple :
 

Code :
  1. <%@LANGUAGE="VBSCRIPT" %>
  2. <HTML>
  3. <BODY>
  4. <%
  5.     Set jmail = Server.CreateObject("JMail.Message" )
  6.     jmail.AddRecipient "myRecipient@hisdomain.com", "Mr.Example"
  7.     jmail.From = "me@mydomain.com"
  8.     jmail.Subject = "Here's some graphics!"
  9.     jmail.Body = "A nice picture if you can read HTML-mail."
  10.     ' The return value of AddAttachment is used as a
  11.     ' reference to the image in the HTMLBody.
  12.     contentId = jmail.AddAttachment("c:\myCoolPicture.gif" )
  13.     ' As only HTML formatted emails can contain inline images
  14.     ' we use HTMLBody and appendHTML
  15.     jmail.HTMLBody = "<html><body><font color=""red"">Hi, here is a nice picture:</font><br>"
  16.     jmail.appendHTML "<img src=""cid:" & contentId & """>"
  17.     jmail.appendHTML "<br><br>good one huh?</body></html>"
  18.     ' But as not all mailreaders are capable of showing HTML emails
  19.     ' we will also add a standard text body
  20.     jmail.Body = "Too bad you can't read HTML-mail."
  21.     jmail.appendText " There would have been a nice picture for you"
  22.     jmail.Send( "mailserver.mydomain.com" )
  23.     %>
  24. Email sent! </BODY>
  25. </HTML>

Reply

Marsh Posté le 18-11-2005 à 12:07:41    

Super Flyman30.
 
Le prochain coup, je netoie mon ecran avant d'aller sur Google.
 
merci pour ton aide.

Reply

Sujets relatifs:

Leave a Replay

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