WordPress : configurer le SMTP

ajouter ce code dans function.php pour l’envoi de formulaire par email

}

add_action( 'phpmailer_init', 'my_phpmailer_configuration' );
function my_phpmailer_configuration( $phpmailer ) {
    $phpmailer->isSMTP();     
    $phpmailer->Host = 'ssl0.ovh.net';
    $phpmailer->SMTPAuth = true; // Indispensable pour forcer l'authentification
    $phpmailer->SMTPSecure = 'ssl';
    $phpmailer->From = 'resa@foodarts.run';
    $phpmailer->Port = 465;
    $phpmailer->Username = 'resa@foodarts.run';
    $phpmailer->Password = '75sdTE5474';
}

Source : Jules Gaston

Laisser un commentaire

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

*