WordPress BAE上发邮件函数

时间:2015-11-06

 WordPress在BAE上发邮件的函数功能,直接放入主题functions.php就可以了。

代码如下:

if ( !function_exists( 'wp_mail' ) ) :

function wp_mail( $to, $subject, $message, $headers = '', $attachments = array() )

{ $queue = '云消息名称';

require_once ('Bcms.class.php');

$bcms = new Bcms () ;

$form = '发件人地址';

$ret = $bcms->mail ( $queue, '' . $message, array( $to ), array( Bcms::FROM=>$from_email, Bcms::MAIL_SUBJECT => $subject) ) ;

if ( false === $ret ) { return false; }

else { return true; } }

endif;

 
 
上一条:wordpress无法登录后台的解决方法 下一条:wordpress函数:do_action()函数的定义及用法

相关文章

最新文章