วิธีการส่งอีเมลโดยทางโปรแกรม


คำตอบ:


63

การใช้hook_mailและdrupal_mailคุณสามารถสร้างและส่งอีเมลได้

ติดตั้ง e-mail use 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;
  }
}

ในการส่งจดหมายให้ใช้ drupal_mail:

drupal_mail($module, $key, $to, $language, $params = array('username' => 'John Potato'), $from = NULL, $send = TRUE)

เห็นได้ชัดว่าแทนที่พารามิเตอร์: $ key ควรเท่ากับ 'mymail'

ส่งอีเมลในไม่กี่ขั้นตอน:

  1. เรียกว่า drupal_mail
  2. Drupal สร้างอีเมล
  3. hook_mail ถูกเรียกสำหรับข้อมูลเฉพาะ (การนำไปใช้)
  4. hook_mail_alter ถูกเรียกใช้เพื่อให้โมดูลอื่นสามารถแก้ไขได้
  5. เรียกว่า drupal_send_mail

5
เขาพูดถูก แต่เพื่อชี้แจง bit hook_mail ให้วิธีการจัดโครงสร้างและจัดรูปแบบอีเมลตามคีย์ที่คุณกำหนด drupal_mail () คือสิ่งที่คุณโทรติดต่อเพื่อส่งอีเมล ผ่านคีย์สำหรับโครงสร้างที่คุณต้องการใช้ (และโมดูลที่ตอบสนองต่อที่สำคัญที่)
เจสันสมิ ธ

9
ในตัวอย่างนี้เป็นรหัสยากที่จะ$message['to'] foo@bar.comละเว้นสิ่งนี้และข้อความจะถูกส่งไปยังผู้รับที่ระบุไว้เมื่อdrupal_mail()ถูกเรียก
pfrenssen

12

หากคุณต้องการวิธีที่ง่ายในการส่งอีเมลให้ตรวจสอบแบบธรรมดา Mail ; มันเป็นโมดูลที่ฉันทำงานเพื่อให้ส่งอีเมลด้วย Drupal 7+ ง่ายขึ้นและไม่ต้องใช้การติดตั้งเพิ่มเติมหรือระบบความรู้ MailSystem การส่งอีเมลนั้นง่ายเหมือน:

simple_mail_send($from, $to, $subject, $message);

... และจะทำงานร่วมกับ Drupal 8 เกินไปกับ API เดียวกันแน่นอน :)
geerlingguy

1

คุณสามารถใช้วิธีที่ง่ายในการส่งอีเมล, ตรวจสอบmailsystem ; มันเป็นโมดูล

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

ทำงานได้อย่างสมบูรณ์แบบ
WM

0

คุณสามารถใช้รหัสนี้ในส่วนที่คุณเลือกเองภายในโมดูลที่กำหนดเองของคุณ:

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

จากนั้นคุณสามารถใช้ฟังก์ชั่นด้านบนดังนี้:

        $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');
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.