Persits ASPEmail sample code

Programming, error messages and sample code > sample code
NOTICE:  Trial account does not have SMTP service. Therefore, you cannot test this in your trial account. We do this to prevent spammer from taking advantage of our Free Trial Service.

You should use the smtp server assigned to your account "mail.yourdomain.com" as the SMTP outgoing server for your web applications(Replace yourdomain.com to your own domain name). 

To get your SMTP server setup, please follow the below:
1) Login to your control panel
2) Make sure a domain name is added to your account by going to Hosting Control Panel -> Website Domain Manager
3) Once the domain name is added to your account, go to Hosting Control Panel -> Email Manager and activate your email service for your domain name.
4) Create the necessary email account that you need.  Your script MUST send from an valid Email account. So create the ones you need.
5) Done! Please follow below's code sample to send emails.

YOU MUST USE SMTP AUTHENTICATION 



Persits ASPEmail sample code


<html> 
<head> 
</head> 
<body> 
<
 
Set Mailer = Server.CreateObject("Persits.MailSender") 
 
Mailer.Host = "mail.yourdomain.com" 
Mailer.Username = "postmaster@yourdomain.com" 
Mailer.Password = "password" 
Mailer.FromName   = "postmaster@yourdomain.com" 
Mailer.From"postmaster@yourdomain.com" 
Mailer.AddAddress "postmaster@yourdomain.com" 
Mailer.Subject    = "This is a sample email sent from Persits ASPEMail" 
Mailer.Body   = "Congratulation" & VbCrLf & "If you receive this is, your mail component works" 
 
' catch errors 
On Error Resume Next 
 
Mailer.Send 
 
If Err <> 0 Then ' error occurred 
      Response.Write "Mail send failure. Error was " & Err.Description 
else 
     Response.Write "Mail sent..." 
End If 
 
%> 
</body> 
</html>