Özel modülümden programlı bir e-posta göndermek için Drupal'ın e-posta sistemini kullanmak istiyorum. Mümkün mü?
Özel modülümden programlı bir e-posta göndermek için Drupal'ın e-posta sistemini kullanmak istiyorum. Mümkün mü?
Yanıtlar:
Hook_mail ve drupal_mail'i kullanarak bir e-posta oluşturabilir ve gönderebilirsiniz.
Bir e-posta kullanımı kullanın hook_mail:
function MODULENAME_mail ($key, &$message, $params) {
switch ($key) {
case 'mymail':
// Set headers etc
$message['to'] = 'foo@bar.com';
$message['subject'] = t('Hello');
$message['body'][] = t('Hello @username,', array('@username' => $params['username']));
$message['body'][] = t('The main part of the message.');
break;
}
}
Bir posta göndermek için drupal_mail kullanın:
drupal_mail($module, $key, $to, $language, $params = array('username' => 'John Potato'), $from = NULL, $send = TRUE)
Açıkça parametreleri değiştirin: $ key 'mymail' değerine eşit olmalıdır
Bir e-posta birkaç adımda gönderilir:
$message['to']
zor kodlanmıştır foo@bar.com
. Bunu atlayın ve mesaj drupal_mail()
çağrıldığında belirtilen alıcıya gönderilir .
E-posta göndermenin daha basit bir yolunu istiyorsanız, Basit Posta'ya göz atın ; Drupal 7+ ile e-posta göndermeyi çok daha kolay hale getirmek için üzerinde çalıştığım bir modül ve fazladan kanca uygulaması veya MailSystem bilgisi gerektirmiyor. Bir e-posta göndermek kadar basittir:
simple_mail_send($from, $to, $subject, $message);
E-posta göndermenin daha basit bir yolunu kullanabilir, posta sistemini kontrol edebilirsiniz ; bu bir modül.
<?php
$my_module = 'foo';
$from = variable_get('system_mail', 'organization@example.com');
$message = array(
'id' => $my_module,
'from' => $from,
'to' => 'test@example.com',
'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.
}
?>
Özel kodunuzda bu kodu kendi seçtiğiniz bir kancada kullanabilirsiniz:
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', 'admin@yoursite.com');
}
$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;
}
}
Sonra yukarıdaki işlevi bu gibi kullanabilirsiniz:
$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');