Indsætte baggrundsbillede med Jmail
Hej.Jeg er for nyligt begyndt at bruge Jmail og leger lidt med at sende mail i HTML kode.
Nedenstående script virker fint, men jeg vil gerne ha' indsat et baggrundsbillede i mailen (main.jpg). Hvordan gør jeg det?
-------------------------------------
' The return value of AddAttachment is used as a
' reference to the image in the HTMLBody.
contentIdlogo = jmail.AddAttachment("d:\web\localuser\domæne.dk\public_html\IMAGES\logo.jpg")
contentIdmain = jmail.AddAttachment("d:\web\localuser\domæne.dk\public_html\IMAGES\main.jpg")
contentIdbund = jmail.AddAttachment("d:\web\localuser\domæne.dk\public_html\IMAGES\bund.jpg")
' As only HTML formatted emails can contain inline images
' we use HTMLBody and appendHTML
jmail.HTMLBody = "<html><body bgcolor=""#000000"">"
jmail.appendHTML "<img src=""cid:" & contentIdlogo & """>"
jmail.appendHTML "<br><br>"
jmail.appendHTML "<font color=""#F3C800"">"&Request.Form("message")&"</font>"
jmail.appendHTML "<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>"
jmail.appendHTML "<img src=""cid:" & contentIdbund & """>"
jmail.appendHTML "</body></html>"