Our bullet
proof hosting and bullet
proof server can support Jmail (windows box and ASP support).It
allow you send email for normal use,such as Auto Response email.
Here is an example send mail script:
<%
Dim Jmail
Set Jmail=server.createobject("Jmail.Message")
Jmail.Charset = "US-ASCII"
Jmail.Silent = true
Jmail.Priority = 3
Jmail.MailServerUserName = "xxx@xxx.com"
Jmail.MailServerPassword = "xxxxxx"
Jmail.From = "xxx@xxx.com"
Jmail.FromName = "Sender name"
Jmail.Subject = "subject"
Jmail.AddRecipient "xxx@xxx.com"
Jmail.Body = "Your message"
Jmail.Send("stmp.diskhosting.com")
Set Jmail=nothing
%>
|