Sending Emails from Your Web Page / Server

You should use robots.neuprime.com:25 smart SMTP host to relay from our VPS server. Your mail letter FROM address should be mailbox working at our hosting.

If you are sure to take responsibility on direct email SMTP delivery, please contact our support to disable any SMTP port limitations.

Spam Outbreaks Protection

Your mail letter FROM address should be mailbox working at our hosting.

Common Problems

Please remember that RFC standards do not allow more than about 80 characters per email message line.
It is typical for HTML messages to violate this standard because line feeds are encoded as <br>, so regular text line feeds may be completely missing.

Please add line feeds to your messages to ensure proper delivery.

Sending from PHP Scripts

You can use standard mail() function to relay mail.

For example, we at NeuPrime relay using this function:
function _mail ($from, $to, $subj, $what)
{
	mail($to, $subj, $what, 
"From: $from
Reply-To: $from
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit"
	);
}
Please keep all line feeds in this code block.

Refer to PHP documentation for more examples.

Sending from Other Scripts (PERL, Ruby, etc)

Please use standard sendmail programm /usr/bin/sendmail.

Sending from Microsoft ASP

Attention: we do not support CDONTS because it is legacy technology. We recommend using Persits.MailSender class (AspEmail) preinstalled on our servers.
Please see this example:
<%
set mm = Server.CreateObject("Persits.MailSender")
	mm.Host = "robots.neuprime.com"
	mm.From = "support@neuprime.com"
	mm.FromName = "NeuPrime support"
	mm.AddAddress "xxxx@gmail.com"
	mm.AddCustomHeader "Content-Type: text/plain; charset=utf-8"
	mm.AddCustomHeader "Content-Transfer-Encoding: 8bit"
	mm.Subject = "Test message subject"
	mm.IsHTML = 0

	mm.Body = "Test message body"
	mm.Send
%>
Please refer to component manual for details.

Sending from Microsoft ASP.NET

Use any method according to ASP.NET documentation, using SMTP server robots.neuprime.com without authentication. For example use System.Web.Mail for ASP.NET 2.0.
System.Web.Mail.MailMessage m = new System.Web.Mail.MailMessage();
m.From = from;
m.To = to;
m.Subject = subject;
m.Body = what;
m.BodyFormat = System.Web.Mail.MailFormat.Text;
m.BodyEncoding = System.Text.Encoding.GetEncoding("utf-8");

System.Web.Mail.SmtpMail.SmtpServer = "robots.neuprime.com";
System.Web.Mail.SmtpMail.Send (m);