No need for endless documentation!

Our API is very easy to use, take a look:
REQUEST : https://api.emailroot.com/smtp/mail/send/
ACTION : Send an email via API
$apikey = "Your API";
$sender_name = urlencode("Your name");
$sender_email = "yourmail@domain.com";
$mail_subject = urlencode("API TEST OK");
$mail_body = urlencode("HELLO WORLD! EMAIL TEST");

$recipient_email = "mailDestination@domain.com";

$URL = "https://api.emailroot.com/smtp/mail/send/?apikey=".$apikey."&sender_name=".$sender_name."&sender_email=".$sender_email."&recipient_email=".$recipient_email ."&charset= ".$charset."&mail_subject=".$mail_subject."&mail_body=".$mail_body."&format=html";

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $URL);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

echo 1TP4Allput = curl_exec($ch);
curl_close($ch);

Login

Lost your password?

Create an account?

en_GB