Dev License: This installation of WHMCS is running under a Development License and is not authorized to be used for production use. Please report any cases of abuse to abuse@whmcs.com

We have installed JMail on our Windows shared servers. You can use following sample script to send emails via JMail.

<%
Set JMail = Server.CreateObject("JMail.SMTPMail")
JMail.ServerAddress = "SMTP_SERVER"
JMail.Sender = "mail@YOURDOMAIN"
JMail.Subject = "Email Subject"
JMail.AddRecipient "RECIPIENT_EMAIL"
JMail.Body = "Email contents"
JMail.Priority = 1
JMail.Execute
%>

We don't offer pre-installed JMail with default VPS configuration. However, VPS users can purchase JMail license and install it.


Note: It is recommended to use email list cleaning service before sending out an email campaign
Was this answer helpful? 131 Users Found This Useful (338 Votes)

Powered by WHMCompleteSolution