Wp_mail doesnt work

时间:2016-04-29 作者:WalterV

我创建了一个用于发送邮件的表单,但它不起作用。在php中启用了电子邮件功能。

if (!$error_msg) {
    $to = "[email protected]";
    $headers[] = \'Content-Type: text/html; charset=UTF-8\';
    $headers[] = \'From: \' . $fullname . \' <\' . $mail . \'>\' . "\\r\\n";
    wp_mail($to, $object, $message, $headers);
    $error_msg_type = \'success\';
    $error_msg = __(\'cont_mail_sent\', \'Theme\');
}
怎么了?

1 个回复
SO网友:Owais Alam

如果您正在使用任何允许您在WordPress中配置SMTP的东西,请将其取出。

然后将所有内容放入函数:

add_action(\'init\',\'delay_until_init\');
function delay_until_init(){
   // call wp_mail() here
}