Heim > Fragen und Antworten > Hauptteil
In meinem WordPress v6.0 habe ich das Senden von SMTP-E-Mails über $phpmailer
(no-reply@example.com) konfiguriert und es funktioniert einwandfrei.
Ich möchte ein anderes SMTP-E-Mail-Konto (contact@example.com) für alle benutzerdefinierten Kontaktformularkommunikationen verwenden.
Senden Sie eine Kontaktformular-E-Mail mit wp_mail()
wie unten gezeigt:
wp_mail($form_to, $form_subject, $form_body, implode("\r\n", $form_headers));
So identifizieren Sie die oben genannten wp_mail
并使用特定的 SMTP 帐户?下面是我的代码,没有真正的 if
zu überprüfenden Bedingungen:
// 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粉1357999492024-02-05 09:12:30
这就是我解决这个问题的方法。
在评论表单电子邮件中包含自定义标头:评论:评论表单
。
使用wp_mail
过滤器,检查评论表单发送的电子邮件是否如下:
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; }