Programlı bir e-posta nasıl gönderilir?


Yanıtlar:


63

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:

  1. drupal_mail denir
  2. Drupal e-postayı oluşturur
  3. özellikleri için hook_mail çağrılır (uygulama)
  4. hook_mail_alter denir, böylece diğer modüller onu değiştirebilir
  5. drupal_send_mail denir

5
Haklı, ancak biraz netleştirmek için hook_mail, tanımladığınız rastgele bir anahtara dayanarak bir e-postayı yapılandırma ve temalandırma yolu sunar. drupal_mail (), bir e-posta göndermek için aradığınız şeydir. Kullanmak istediğiniz yapının anahtarını iletin. (ve bu anahtara cevap veren modül)
Jason Smith

9
Bu örnekte $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 .
pfrenssen,

12

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);

... ve Drupal 8 ile de aynı API ile çalışıyor :)
geerlingguy

1

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.
}
?>

Mükemmel çalışıyor.
WM

0

Ö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');
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.