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キーがありません。さらに、この関数はすでにPHPmail()を使用しているため、直接使用する必要はありません。

于 2013-02-05T12:38:37.800 に答える