Scelto da oltre migliaia di esperti di marketing in tutto il mondo
Configurazione facile utilizzando il protocollo SMTP
Server affidabili e indirizzi IP dedicati
API flessibile per gli sviluppatori
Assistenza via chat dal vivo 24 ore su 24, 7 giorni su 7
Come utilizzare l'SMTP per le aziende
L'SMTP è il metodo più facile per iniziare ad inviare campagne email transazionali per confermare la registrazione, fornire aggiornamenti sull'ordine o ringraziare un cliente per l'acquisto


Invia email transazionali
Integra un server SMTP nel tuo CMS, CRM o builder di siti web per inviare email direttamente ai tuoi clienti senza configurazione aggiuntiva nel servizio email.
I tuoi clienti riceveranno i messaggi istantaneamente, anche se hai migliaia di ordini ogni giorno.


Esplora rapporti dettagliati nel tuo account


Utilizza modelli gratuiti di email transazionali
Come utilizzare il servizio SMTP API per campagne email
<?php
use Sendpulse\RestApi\ApiClient;
use Sendpulse\RestApi\Storage\FileStorage;
$smtpSendMailResult = (new ApiClient('MY_API_ID', 'MY_API_SECRET', new FileStorage()))->post('smtp/emails', [
'email' => [
'html' => base64_encode('<p>Hello!</p>'),
'text' => 'text',
'subject' => 'Mail subject',
'from' => ['name' => 'API package test', 'email' => 'from@test.com'],
'to' => [['name' => 'to', 'email' => 'to@test.com']],
'attachments_binary' => [
'attach_image.jpg' => base64_encode(file_get_contents('../storage/attach_image.jpg'))
]
]]);
var_dump($smtpSendMailResult);
?>
sample.php hosted with ❤ by
github.com/sendpulse/sendpulse-rest-api-php
# SendPulse's Ruby Library: https://github.com/sendpulse/sendpulse-rest-api-ruby
require './api/sendpulse_api'
sendpulse_api = SendpulseApi.new(API_CLIENT_ID, API_CLIENT_SECRET, API_PROTOCOL, API_TOKEN)
email = {
html: '<p>Your email content goes here<p>',
text: 'Your email text version goes here',
subject: 'Testing SendPulse API',
from: { name: 'Your Sender Name', email: 'your-sender-email@gmail.com' },
to: [
{
name: "Subscriber's name",
email: 'subscriber@gmail.com'
}
]
}
sendpulse_api.smtp_send_mail(email)
sample.rb hosted with ❤ by
github.com/sendpulse/sendpulse-rest-api-ruby
# SendPulse's Python Library: https://github.com/sendpulse/sendpulse-rest-api-python
from pysendpulse import PySendPulse
if __name__ == "__main__":
TOKEN_STORAGE = 'memcached'
SPApiProxy = PySendPulse(REST_API_ID, REST_API_SECRET, TOKEN_STORAGE)
email = {
'subject': 'This is the test task from REST API',
'html': '<p>This is a test task from https://sendpulse.com/api REST API!<p>',
'text': 'This is a test task from https://sendpulse.com/api REST API!',
'from': {'name': 'John Doe', 'email': 'john.doe@example.com'},
'to': [
{'name': 'Jane Roe', 'email': 'jane.roe@example.com'}
]
}
SPApiProxy.smtp_send_mail(email)
sample.py hosted with ❤ by
github.com/sendpulse/sendpulse-rest-api-python
// SendPulse's Java Library https://github.com/sendpulse/sendpulse-rest-api-java
import com.sendpulse.restapi.Sendpulse;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
public class Example {
public static void main(String[] args) {
Sendpulse sendpulse = new Sendpulse(API_CLIENT_ID, API_CLIENT_SECRET);
Map<String, Object> from = new HashMap<String, Object>();
from.put("name", "Your Sender Name");
from.put("email", "your-sender-email@gmail.com");
ArrayList<Map> to = new ArrayList<Map>();
Map<String, Object> elementto = new HashMap<String, Object>();
elementto.put("name", "Subscriber's name");
elementto.put("email", "subscriber@gmail.com");
to.add(elementto);
Map<String, Object> emaildata = new HashMap<String, Object>();
emaildata.put("html","Your email content goes here");
emaildata.put("text","Your email text version goes here");
emaildata.put("subject","Testing SendPulse API");
emaildata.put("from",from);
emaildata.put("to",to);
Map<String, Object> result = (Map<String, Object>) sendpulse.smtpSendMail(emaildata);
System.out.println("Result: " + result);
}
}
sample.java hosted with ❤ by
github.com/sendpulse/sendpulse-rest-api-java
// SendPulse's Node.JS Library: https://github.com/sendpulse/sendpulse-rest-api-node.js
var sendpulse = require("./api/sendpulse.js");
sendpulse.init(API_USER_ID, API_SECRET, TOKEN_STORAGE);
var email = {
"html" : "<p>Your email content goes here</p>",
"text" : "Your email text version goes here",
"subject" : "Testing SendPulse API",
"from" : {
"name" : "Your Sender Name",
"email" : "your-sender-email@gmail.com"
},
"to" : [ {
"name" : "Subscriber's name",
"email" : "subscriber@gmail.com"
} ]
};
var answerGetter = function answerGetter(data){
console.log(data);
}
sendpulse.smtpSendMail(answerGetter, email);
sample.js hosted with ❤ by
github.com/sendpulse/sendpulse-rest-api-node.js
#import "Sendpulse.h" // SendPulse's Obj-C Library https://github.com/sendpulse/sendpulse-rest-api-objective-c
- (void)viewDidLoad {
[super viewDidLoad];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(doSomethingWithTheData:) name:@"SendPulseNotification" object:nil];
Sendpulse* sendpulse = [[Sendpulse alloc] initWithUserIdandSecret:userId :secret];
NSDictionary *from = [NSDictionary dictionaryWithObjectsAndKeys:@"Your Sender Name", @"name", @"your-sender-email@gmail.com", @"email", nil];
NSMutableArray* to = [[NSMutableArray alloc] initWithObjects:[NSDictionary dictionaryWithObjectsAndKeys:@"Subscriber's name", @"name", @"subscriber@gmail.com", @"email", nil], nil];
NSMutableDictionary *emaildata = [NSMutableDictionary dictionaryWithObjectsAndKeys:@"<b>Your email content goes here</b>", @"html", @"Your email text version goes here", @"text",@"Testing SendPulse API",@"subject",from,@"from",to,@"to", nil];
[sendpulse smtpSendMail:emaildata];
}
- (void)doSomethingWithTheData:(NSNotification *)notification {
NSMutableDictionary * result = [[notification userInfo] objectForKey:@"SendPulseData"];
NSLog(@"Result: %@", result);
}
sample.m hosted with ❤ by
github.com/sendpulse/sendpulse-rest-api-objective-cFunzionalità del servizio SMTP
Indirizzi IP dedicati
Monitoriamo la reputazione di tutti gli indirizzi IP per garantire la massima consegnabilità.
DKIM e firme SPF
Autentica il dominio del mittente della tua compagnia con l'aiuto di firme crittografiche speciali.
Server di cui ti puoi fidare
Invia campagne email tramite centri dati europei con supporto connessione SSL.
Aumenta la tua comunicazione con i clienti inviando email transazionali tramite SMTP o API
Puoi leggere la nostra documentazione detagliata API e scoprire tutte le impostazioni necessarie per il server SMTP nel tuo account
Prova gratuitamenteNon è richiesta la carta di credito
Ti aiuteremo a prendere confidenza con i servizi di SendPulse
Ci impegnamo per rendere il nostro servizio SMTP il più intuitivo e user-friendly possibile.
Per qualsiasi domanda, contatta il nostro supporto clienti o fai riferimento alle nostre risorse gratuite.
FAQ
Cos'è un server SMTP?
Il Protocollo di Trasferimento di Posta Semplice è un metodo per scambiare informazioni tra il server di un mittente e quello di un destinatario. Puoi utilizzare il server SMTP di SendPulse per inviare email HTML senza provare altri nostri servizi e funzionalità.
Perchè dovrei utilizzare un server SMTP?
Un server SMTP ti permette di inviare qualsiasi tipo di email transazionale, ad esempio, email di conferma, email di carrello abbandonato, aggiornamenti sulla spedizione, notifiche eccetera. Il server SMTP di SendPulse è affidabile ed ha un alto tasso di consegnabilità e di reputazione del mittente.
Come posso impostare un server SMTP?
Devi registrarti a SendPulse, riempire un semplice modulo, e impostare i tuoi parametri di autenticazione. Segui i prompt, e ricorda che il nostro team di supporto clienti è sempre pronto ad aiutarti.
Quanto costa utilizzare un server SMTP?
Con SendPulse puoi inviare fino a 12.000 email gratuitamente ogni mese. Se vuoi inviare più email tramite il nostro server SMTP, devi scegliere tra i nostri piani di abbonamento mensili e piani prepagati. Scopri di più sui nostri prezzi per server SMTP qui.
Integra campagne email nel tuo progetto adesso
Invia email transazionali istantaneamente tramite SMTP o API con consegnabilità d'eccezione
Provalo ora12.000 email al mese gratis
oppure