Sending mail via Persits.MailSender

Here's a complex example of sending an email with SMTP authentication and attachments.

<%

Set Mail = Server.CreateObject("Persits.MailSender")
Mail.Host = "mail.yourdomain.com"
Mail.Username = "emailaddress@yourdomain.com"
Mail.Password = "your password"
Mail.From = "webmaster@yourdomain.com"
Mail.FromName = "Your Name"
Mail.AddAddress "recipient@somedomain.com"
Mail.AddCC "you@yourdomain.com"
Mail.Subject = "Subject goes here"
Mail.Body = "Message body goes here"
On Error Resume Next
Mail.SendToQueue
Set Mail = Nothing

%>

Was this answer helpful?

 Print this Article

Also Read

How do I apply rules to my messages in Outlook?

Rules help to keep e-mail organized by automatically performing actions on messages as they...

Is there a limit to the number of email I can send?

Yes,  There is a limit on the number of mail you can send from our server using sendmail....

What is Catch All account?

Setting the email account to be a catch all account will mean that not only will it collect email...

Using Alps HOST Web Mail

  How to access the web mail interfaceThe URL to access the customer web based email...

With my email client, I can receive email but I cannot seem to send email. What can I do?

SYMPTOMS When I try send emails I get the error: The connection to the server has failed....