Menu
Accedi Crea account
Relay SMTP

Server SMTPper ogni linguaggio.

Configura un server in 30 secondi e inizia a inviare. Compatibile con qualunque client SMTP, dalle CMS storiche ai framework moderni.

Connessione

  • Host: smtp.targetsmtp.it
  • Porte: 25 (server-to-server), 465 (SMTPS), 587 (submission, raccomandato), 2525 (alternativa se 587 e bloccata)
  • TLS: STARTTLS obbligatorio dalla 587/25, TLS implicito sulla 465. Minimum TLS 1.2.
  • Autenticazione: SASL PLAIN / LOGIN su connessione cifrata.

WordPress (plugin WP Mail SMTP)

SMTP Host:      smtp.targetsmtp.it
SMTP Port:      587
Encryption:     TLS
Authentication: Yes
SMTP Username:  la_tua_credenziale
SMTP Password:  la_tua_password
From Email:     notifiche@tuosito.it
From Name:      Il Tuo Sito

PHP / Laravel (PHPMailer)

$mail = new PHPMailer(true);
$mail->isSMTP();
$mail->Host       = 'smtp.targetsmtp.it';
$mail->SMTPAuth   = true;
$mail->Username   = 'cred_xxx';
$mail->Password   = getenv('TARGET_SMTP_PASS');
$mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS;
$mail->Port       = 587;

Node.js (Nodemailer)

const tx = nodemailer.createTransport({
  host: 'smtp.targetsmtp.it',
  port: 587, secure: false,
  requireTLS: true,
  auth: { user: 'cred_xxx', pass: process.env.TARGET_SMTP_PASS },
});
await tx.sendMail({ from, to, subject, html });

Python (smtplib)

import smtplib, ssl, os
ctx = ssl.create_default_context()
with smtplib.SMTP('smtp.targetsmtp.it', 587) as s:
    s.starttls(context=ctx)
    s.login('cred_xxx', os.environ['TARGET_SMTP_PASS'])
    s.send_message(msg)

Test rapido con swaks

swaks --server smtp.targetsmtp.it:587 \
  --auth-user cred_xxx --auth-password $PASS \
  --tls --from "test@tuosito.it" --to tu@example.com \
  --header "Subject: Test"

FAQ tecniche

Posso usare la porta 25?

Si, ma e pensata per server-to-server. Per applicazioni usa la 587.

Supportate SMTP senza TLS?

No. Rifiutiamo AUTH su connessioni non cifrate.

Limite di destinatari per messaggio?

Max 100 destinatari (RCPT TO) per singola transazione SMTP.

Funzionalità