Comment sélectionner un compte SMTP dans PHPMailer en fonction de critères spécifiques ?
P粉315680565
P粉315680565 2024-02-04 10:43:11
0
1
626

Dans mon WordPress v6.0, j'ai configuré l'envoi d'e-mails SMTP via $phpmailer (no-reply@example.com) et cela fonctionne bien.

Je souhaite utiliser un autre compte de messagerie SMTP (contact@example.com) pour toutes les communications par formulaire de contact personnalisé.

Envoyez un e-mail du formulaire de contact en utilisant wp_mail() comme ceci :

wp_mail($form_to, $form_subject, $form_body, implode("\r\n", $form_headers));

Comment identifier les wp_mail 并使用特定的 SMTP 帐户?下面是我的代码,没有真正的 if conditions à vérifier ci-dessus :

// MAILER
add_action('phpmailer_init', 'send_smtp_email', 10, 1);

function send_smtp_email($phpmailer) {

    $phpmailer->isSMTP();
    $phpmailer->isHTML(true);

    if (wp_mail == "contact_form") { // not a real condition, this is what I want to achieve
        $phpmailer->Host = 'smtp.example.com';
        $phpmailer->SMTPAuth = 'true';
        $phpmailer->Port = 465;
        $phpmailer->Username = 'contact@example.com';
        $phpmailer->Password = 'password1';
        $phpmailer->SMTPSecure = 'ssl';
        $phpmailer->From = 'contact@example.com';
        $phpmailer->FromName = 'Site Contact Form';
    } else {
        $phpmailer->Host = 'smtp.example.com';
        $phpmailer->SMTPAuth = 'true';
        $phpmailer->Port = 465;
        $phpmailer->Username = 'no-reply@example.com';
        $phpmailer->Password = 'password2';
        $phpmailer->SMTPSecure = 'ssl';
        $phpmailer->From = 'no-reply@example.com';
        $phpmailer->FromName = 'Site Mail';
    }
}

P粉315680565
P粉315680565

répondre à tous(1)
P粉135799949

C'est ainsi que j'ai résolu ce problème.

Incluez un en-tête personnalisé dans l'e-mail de votre formulaire de commentaire : 评论:评论表单.

Utilisez le filtre wp_mail et vérifiez si l'email envoyé par le formulaire de commentaire est le suivant :

add_filter('wp_mail', 'set_smtp_email_accounts');

function set_smtp_email_accounts($mail) {

    // Comment form mails custom header
    $header = $mail['headers'];
    $header_text = 'Comments: Comment Form';
    $header_check = in_array($header_text, $header);

    //if comment form mails 
    if ($header_check) {
        add_action('phpmailer_init', 'send_smtp_email_comments', 10, 1); // if comments form mail
    } else {
        add_action('phpmailer_init', 'send_smtp_email', 10, 1); 
    }

    return $mail;
}
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!