Ecco come inviare una e-mail con uno script PHP:
<?php
$to = utente@dominio.it;
$subject = "Notifica";
$body = "E' stato inserito un post...";
if (mail($to, $subject, $body)) {
echo("<p>Messaggio inviato correttamente.</p>");
} else {
echo("<p>Inoltro del messagggio fallito.</p>");
}
?>
Altro esempio, con autenticazione SMTP:
<?php
require_once "Mail.php";
$from = "Sandra Sender <sender@example.com>";
$to = "Ramona Recipient <recipient@example.com>";
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";
$host = "mail.example.com";
$username = "smtp_username";
$password = "smtp_password";
$headers = array ('From' => $from,
'To' => $to,
'Subject' => $subject);
$smtp = Mail::factory('smtp',
array ('host' => $host,
'auth' => true,
'username' => $username,
'password' => $password));
$mail = $smtp->send($to, $headers, $body);
if (PEAR::isError($mail)) {
echo("<p>" . $mail->getMessage() . "</p>");
} else {
echo("<p>Message successfully sent!</p>");
}
?>
Per eseguire quest'ultimo script avrai bisogno del PEAR Mail package.