WordPress wp_mail发件人未更改

时间:2019-05-11 14:35:05

标签: php wordpress

我目前正在尝试从WordPress发送带有wp_mail功能的电子邮件时动态更改发件人电子邮件。

问题是仍然有站点所有者显示为发件人,而不是应作为发件人的人。这是我的代码:

$attachments = array( $invoice_pdf_path );
$headers     = array( 'From: ' . $customer->first_name . ' ' . $customer->last_name . ' <' . $customer->user_email . '>' );
ob_start();
printf( __( get_option( 'tax_consultant_invoice_email_message' ) ), 'Rechnung', $order_id, $customer->first_name . ' ' . $customer->last_name );
$message = ob_get_contents();
ob_end_clean();
wp_mail( $tax_consultant_email, 'Rechnung für Bestellung ' . $order_id, $message, $headers, $attachments );

我在WordPress中使用SMTP。也许这是问题所在?

0 个答案:

没有答案