690 shaares
3 liens privés
3 liens privés
Server mail distant
echo "This is the message body" | swaks --to someone@gmail.com --from "you@example.com" --server mail.example.com --auth LOGIN --auth-user "you@example.com" --auth-password "abc123" -tls
Mail local
echo "This is the message body" | swaks --to web-mXHiZ4@mail-tester.com --from "you@example.com"
Server de mail local
echo "This is the message body" | swaks --to web-mXHiZ4@mail-tester.com --from "you@example.com" --server localhost 25
Envoi de mail avec corps de texte dans un fichier :
swaks --to $1 --from $2 --server localhost 25 --body ./test_email.txt
Architecture de postfix (maildrop (pickup) ou smtpd) : http://loic.marrot.free.fr/travaux/images_html/postfix.gif
Envoi de mail via PHP :
# Test via php
<?php
$to = 'nobody@example.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: webmaster@example.com' . "\r\n" .
'Reply-To: webmaster@example.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
?>