我正在尝试发送指定发件人的电子邮件。相反,我得到Nobody@host.edu
$test='example body'.$random_String;
$message3 = array(
'to' => 'fake_user@place.com',
'from' => 'fake_sender@place.edu',
//'from' => variable_get('site_mail', 'admin@example.com'), //alternative doesn't work either
'subject' => t('Example subject'),
'body' => $test,
'headers' => array(),
);
drupal_mail_send($message3);
答案 0 :(得分:1)
只需使用旧的php mail()函数即可 http://www.php.net/manual/en/function.mail.php
答案 1 :(得分:0)
阅读drupal_mail_send()
功能的文档。您没有向drupal_mail_send()
提供正确的参数。您错过了id
密钥。
此外,此功能已使用PHP的mail()
,因此您不必直接使用它。