kipdole
|
| Posted: 03/12/2003, 12:25 PM |
|
How do you send html email?
Thanks
|
|
|
 |
glerma
|
| Posted: 03/12/2003, 7:40 PM |
|
Please be more descriptive.
What is the programming language you are using?
Stuff like that.
|
|
|
 |
kipdole
|
| Posted: 03/13/2003, 12:47 PM |
|
'Send single Email
sub sendemail(email_from, email_to, email_subject, email_body, email_format)
Set Mail = Server.CreateObject("Persits.MailSender")
Mail.Host = "XXX.XXX.X.XX" ' Specify a valid SMTP server
Mail.From = email_from
Mail.FromName = "Support" ' Specify sender's name
Mail.AddAddress email_to
Mail.AddReplyTo "xxxxxx@hotmail.com"
Mail.Subject = email_subject
Mail.Body = email_body
On Error Resume Next
Mail.Send
If Err <> 0 Then
Response.Write "Error encountered: " & Err.Description
End If
|
|
|
 |
|