Plattform: ASP 3.0, JMail Jag har aldrig använt JMail, men en sökning på google gav följande:ContentType när man skickar mail...
Språk: VBScript, HTML
Tjo!
Nu börjar ja bli flintis igen... *sliter mej i håret*
<code>
Set objMail = Server.CreateObject("JMail.Message")
objMail.ContentType = "text/html"
objMail.From = "julius@cesar.com"
objMail.FromName = "Julle"
objMail.AddRecipient "cleo@egypten.com", "Cleo"
objMail.Subject = "Snygga strutar!"
objMail.Body = "Tja bruden!" & vbCrLf & "Ville bara säga att du har snygga pyramider!" & vbCrLf & "- Julle."
objMail.HTMLBody = "<h1>Tja bruden!</h1><BR>Ville bara säga att du har snygga pyramider!<BR><STRONG>- Julle.</STRONG>"
If objMail .Send( "smtp.rom.se" ) Then
Response.Write("Mail skickat! Nu jä*lar blir de krig!!")
Else
Response.Write("Aj aj! Något galet gick fel...")
End If
</code>
De som skickas e endast 'Body'.. de i 'HTMLBody' skickas inte alls.. varför!?
Ja vill att, om man kan läsa HTML-mail så ska man få de, ('HTMLBody'). Kan man inte läsa HTML-mail så får man mailet i "text/plain" ('Body') ist...
Även fast man kan läsa HTML så får man det i "text/plain"...
Nån som fattar!? Sv: ContentType när man skickar mail...
<code>
<%
Set jmail = Server.CreateObject("JMail.Message")
jmail.AddRecipient "myRecipient@hisdomain.com", "Mr.Example"
jmail.From = "me@mydomain.com"
jmail.Subject = "Here's some graphics!"
jmail.Body = "A nice picture if you can read HTML-mail."
' The return value of AddAttachment is used as a
' reference to the image in the HTMLBody.
contentId = jmail.AddAttachment("c:\myCoolPicture.gif")
' As only HTML formatted emails can contain inline images
' we use HTMLBody and appendHTML
jmail.HTMLBody = "<html><body><font color=""red"">Hi, here is a nice picture:</font><br>"
jmail.appendHTML "<img src=""cid:" & contentId & """>"
jmail.appendHTML "<br><br>good one huh?</body></html>"
' But as not all mailreaders are capable of showing HTML emails
' we will also add a standard text body
jmail.Body = "Too bad you can't read HTML-mail."
jmail.appendText " There would have been a nice picture for you"
jmail.Send( "mailserver.mydomain.com" )
%>
</code>
http://www.dimac.net/Products/w3JMail/Version43/Examples/HTMLemail.htm
Inte riktigt samma format som du har på din kod, testa :)
Fredrik