You can use the SMTP server assigned to your account "mail.yourdomain.com" as the SMTP outgoing server on your web application, please replace yourdomail.com to your own domain name).
Persits ASPEmail sample code:
<html>
<head>
</head>
<body>
<%
Set Mailer = Server.CreateObject("Persits.MailSender")
Mailer.Host = "mail.yourdomain.com"
Mailer.Username = "[email protected]"
Mailer.Password = "password"
Mailer.FromName = "[email protected]"
Mailer.From= "[email protected]"
Mailer.AddAddress "[email protected]"
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>