Your simple and modern
email sending alternative
Sending personalized emails has never been easier.
No credit card required
Send 3000 emails/month for free
Ready to start?
If you have an SMTP account and a custom email template,
you are ready!
Configurate SMTP account
Configure and create a connection with your SMTP services from our dashboard.
Learn moreIntegrate the API into your application
With our API or SDK's technologies, sending emails is fast and simple. Forget about delivery issues and ensure your messages are reliably delivered in the shortest amount of time.
Learn moreAttach your files!
You can attach files to your emails. The free plan can have up to 5 MB of files simultaneously stored on our server.
Learn moreIntegrate
using SDK
using API
Javascript
PHP
cURL
Python
fetch("https://api.youremailapi.com/mailer/", {
method: "POST",
headers: {
"Content-Type": "application/json",
apikey: "{API_KEY}",
},
body: JSON.stringify({
subject: "Welcome to our service!",
to: "example@mail.com",
smtp_account: "{SMTP_ACCOUNT_TOKEN}",
template: "{TEMPLATE_TOKEN}",
variables: {
"%app_name%": "YourEmail",
"%user_first_name%": "John"
}
}),
})
<?php
require 'vendor/autoload.php';
$client = new GuzzleHttpClient();
$res = $client->request(
'POST',
'https://api.youremailapi.com/mailer/',
[
'headers' => [
'apikey' => 'API_KEY'
],
'json' => [
'subject' => 'Welcome to our service!',
'to' => 'example@mail.com',
'smtp_account' => 'SMTP_ACCOUNT_TOKEN',
'template' => 'TEMPLATE_TOKEN',
'variables' => [
'%app_name%' => 'YourEmail',
'%user_first_name%' => 'John'
]
]
]
);
curl --location 'https://api.youremailapi.com/mailer/'
--header 'apikey: {API_KEY}'
--header 'Content-Type: application/json'
--data-raw '{
subject: 'Welcome to our service!',
to: 'example@mail.com',
smtp_account: '{SMTP_ACCOUNT_TOKEN}',
template: '{TEMPLATE_TOKEN}',
variables: {
%app_name%: 'YourEmail',
%user_first_name%: 'John'
}
}'
import requests
payload = {
subject: 'Welcome to our service!',
to: 'example@mail.com',
smtp_account: '{SMTP_ACCOUNT_TOKEN}',
template: '{TEMPLATE_TOKEN}',
variables: {
%app_name%: 'YourEmail',
%user_first_name%: 'John'
}
}
headers = {'Content-Type': 'application/json',
'apikey': '[API_KEY]'}
requests.post('https://api.youremailapi.com/mailer/',
json=payload, headers=headers)