0

我正在尝试发送一封指定发件人的电子邮件。相反,我得到了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);
4

2 回答 2

1

只需使用旧的 php mail() 函数 http://www.php.net/manual/en/function.mail.php

于 2013-02-05T05:27:41.580 回答
0

阅读该drupal_mail_send()函数的文档。您没有为drupal_mail_send(). 你错过了id钥匙。另外,这个函数已经使用了 PHP mail(),所以你不必直接使用它。

于 2013-02-05T12:38:37.800 回答