php 更改发件人电子邮件Wordpress

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 更改发件人电子邮件Wordpress相关的知识,希望对你有一定的参考价值。

<?php
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' );

以上是关于php 更改发件人电子邮件Wordpress的主要内容,如果未能解决你的问题,请参考以下文章