wp_mail使用WordPress的默认电子邮件模板发送电子邮件

时间:2019-03-19 07:34:36

标签: php wordpress email

是否有任何方法可以使用WordPress用于发送电子邮件的默认模板(在注册,重置密码等)从WordPress发送电子邮件。

我正在使用wp_mail功能发送电子邮件,但是如何将模板包含在具有自定义内容的消息中。

谢谢

1 个答案:

答案 0 :(得分:0)

尝试使用本教程:https://www.wpbeginner.com/plugins/how-to-change-sender-name-in-outgoing-wordpress-email/


您需要在主题的functions.php文件或特定于站点的插件中添加以下代码。

// Function to change email address

function wpb_sender_email( $original_email_address ) {
    return 'tim.smith@example.com';
}

// Function to change sender name
function wpb_sender_name( $original_email_from ) {
    return 'Tim Smith';
}

// Hooking up our functions to WordPress filters 
add_filter( 'wp_mail_from', 'wpb_sender_email' );
add_filter( 'wp_mail_from_name', 'wpb_sender_name' );
This code simply replaces the default WordPress sender name and email address with your custom sender name and email address.