尝试从主题页面发送邮件

时间:2015-10-28 作者:csharpdude77

我正在尝试发送一封电子邮件,并使用WP_Mail 但是电子邮件没有发送,我只是没有在页面上收到错误消息。有人能告诉我我的功能是否有问题吗?

<?php 

    //lets get the redem voucher email that will go to both the user and                    
  $replacements = array(
\'({playerId})\' => $playerId,    
\'({message_body})\' => nl2br( stripslashes(  $ggs[\'player-redeem\'] ) )
 );
$message = preg_replace( array_keys( $replacements ), array_values( $replacements ),  $ggs[\'player-redeem\']);


//Handle some basic validation
$errors = array();

//Assigning a picture for {logo} replacement
$logo = \'http://fundrasing.davidbuckleyni.co.uk/wp-content/themes/gogreensoccer3/images/logo.png\';
$headers = \'From: My Name <[email protected]>\' . "\\r\\n";
//Send the message assigned to a var so we can output
$status = send_message( \'[email protected]\', \'[email protected]\', \'Player Wants to Redeem Points\', $message, $logo );
我只使用了默认的wp\\u邮件,但它不是作为测试发送的

wp_mail( \'[email protected]\', \'The subject\', \'The message\' );  
我确实收到了来自系统的其他电子邮件,所以我知道它设置正常。

1 个回复
SO网友:Burgi

如果您分配wp_mail() 对于变量,可以回显结果。应返回truefalse.

$email = wp_mail(email,subject,message);
var_dump($email);
我不认识send_message() 函数。

相关推荐

无法在模板函数.php中使用IS_HOME

我试图在标题中加载一个滑块,但只在主页上加载。如果有帮助的话,我正在使用Ultralight模板。我正在尝试(在template functions.php中)执行以下操作:<?php if ( is_page( \'home\' ) ) : ?> dynamic_sidebar( \'Homepage Widget\' ); <?php endif; ?> 但这行不通。现在,通过快速的google,我似乎需要将请