Utilisation smtp externe au serveur

Numéro de l'article : 9200 - Dernière modification : 7 December 2016

Pour des raison de sécurité, le service SMTP en localhost n'est pas actif sur notre serveur Solution WebLinux. Nous vous en proposons un externe qui s'utilise comme suit:

Configuration SMTP 

smtp.si-webserver.com
port 25
courriel d’envoi : [email protected]
Sans authentification donc sans mot de passe.

PHPMailer 

Voici un script PHP que nous connaissons qui permet l'utilisation d'un smtp externe. 

Voici un exemple de scripte avec PHPMailer qui permet l’utilisation de smtp externe.
<?php
require 'lib/PHPMailer-master/PHPMailerAutoload.php';
$mail = new PHPMailer();
$body = "test";
//Create a new PHPMailer instance
$mail = new PHPMailer;
//Tell PHPMailer to use SMTP
$mail->isSMTP();
//Enable SMTP debugging
// 0 = off (for production use)
// 1 = client messages
// 2 = client and server messages
$mail->SMTPDebug = 0; //2 pour debug
//Ask for HTML-friendly debug output
$mail->Debugoutput = 'html';
//Set the hostname of the mail server
$mail->Host = "smtp.webmailsolution.com";
//Set the SMTP port number - likely to be 25, 465 or 587
$mail->Port = 25;
//Whether to use SMTP authentication
$mail->SMTPAuth = false;
//Username to use for SMTP authentication
$mail->Username = "[email protected]";
//Password to use for SMTP authentication
$mail->Password = "";
//Set who the message is to be sent from
$mail->setFrom('[email protected]', 'VotreNomDuFrom');
//Set an alternative reply-to address
$mail->addReplyTo('[email protected]', 'PL');
//Set who the message is to be sent to
$mail->addAddress('[email protected]', 'PL');
//Set the subject line
$mail->Subject = 'PHPMailer SMTP test';
//Read an HTML message body from an external file, convert referenced images to embedded,
//convert HTML into a basic plain-text alternative body
$mail->msgHTML($body);
//Replace the plain text body with one created manually
$mail->AltBody = 'This is a plain-text message body';
//Attach an image file
//$mail->addAttachment('images/phpmailer_mini.png');
//send the message, check for errors
if (!$mail->send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message sent!";
}
?>

NOUS JOINDRE

N'hésitez pas à nous contacter si vous ne trouvez pas de réponses à vos questions.