Drupalのメールシステムを使用して、カスタムモジュールからプログラムでメールを送信したいのですが。それは可能ですか?
hook_mail および drupal_mail を使用して、電子メールを作成および送信できます。
Hook_mailを使用して電子メールを実装します。
function MODULENAME_mail ($key, &$message, $params) {
switch ($key) {
case 'mymail':
// Set headers etc
$message['to'] = '[email protected]';
$message['subject'] = t('Hello');
$message['body'][] = t('Hello @username,', array('@username' => $params['username']));
$message['body'][] = t('The main part of the message.');
break;
}
}
メールを送信するには、drupal_mailを使用します。
drupal_mail($module, $key, $to, $language, $params = array('username' => 'John Potato'), $from = NULL, $send = TRUE)
明らかにパラメータを置き換えます:$ keyは 'mymail'と等しくなければなりません
電子メールは数ステップで送信されます:
電子メールを送信するより簡単な方法が必要な場合は、 Simple Mail ;を確認してください。これは、Drupal 7+でメールを送信するために私が取り組んでいるモジュールであり、追加のフック実装やMailSystemの知識を必要としません。メールの送信は次のように簡単です:
simple_mail_send($from, $to, $subject, $message);
より簡単な方法でメールを送信できます。チェックアウト mailsystem ;それはモジュールです。
<?php
$my_module = 'foo';
$from = variable_get('system_mail', '[email protected]');
$message = array(
'id' => $my_module,
'from' => $from,
'to' => '[email protected]',
'subject' => 'test',
'body' => 'test',
'headers' => array(
'From' => $from,
'Sender' => $from,
'Return-Path' => $from,
),
);
$system = drupal_mail_system($my_module, $my_mail_token);
if ($system->mail($message)) {
// Success.
}
else {
// Failure.
}
?>
このコードは、カスタムモジュール内の独自のフックで使用できます。
function yourmodulename_mail($from = 'default_from', $to, $subject, $message) {
$my_module = 'yourmodulename';
$my_mail_token = microtime();
if ($from == 'default_from') {
// Change this to your own default 'from' email address.
$from = variable_get('system_mail', '[email protected]');
}
$message = array(
'id' => $my_module . '_' . $my_mail_token,
'to' => $to,
'subject' => $subject,
'body' => array($message),
'headers' => array(
'From' => $from,
'Sender' => $from,
'Return-Path' => $from,
),
);
$system = drupal_mail_system($my_module, $my_mail_token);
$message = $system->format($message);
if ($system->mail($message)) {
return TRUE;
} else {
return FALSE;
}
}
次に、上記の関数を次のように使用できます。
$user = user_load($userid); // load a user using its uid
$usermail = (string) $user->mail; // load user email to send a mail to it OR you can specify an email here to which the email will be sent
customdraw_mail('default_from', $usermail, 'You Have Won a Draw -- this is the subject', 'Congrats! You have won a draw --this is the body');