udpluk fra afsender fil
<%
// Send mail start
Set JMail = Server.CreateObject ("JMail.SMTPMail")
JMail.ContentType = "text/html"
JMail.ServerAddress = "mail.smtpserver.dk:25"
JMail.Priority = 1
JMail.Sender = "info@testsite.dk"
JMail.Subject = "Se her"
' Get the recipients mailbox from a form (note the lack of a equal sign).
JMail.AddRecipientEx "info@testsite.dk", "Admin"
JMail.Body = "<font face='Verdana' size='2'>Nyt C.V. i JobBasen.<br><br>" &_
"Navn: " & rs.fields("Navn") & "<br>" &_
"Klik <a href='
www.testsite.dk/index.asp?username=Demo&password=Demo'>HER</a>"" target="_blank">http://Demo:Demo@
www.testsite.dk/index.asp?username=Demo&password=Demo'>HER</a>"JMail.AddHeader "Originating-IP", Request.ServerVariables ("REMOTE_ADDR")
JMail.Execute
Set JMail = Nothing
// Send mail slut
%>