ส่งไฟล์แนบด้วย drupal_mail


14

ฉันกำลังพยายามส่งไฟล์แนบด้วยอีเมลของฉันจาก Drupal ในโมดูลที่กำหนดเองของฉันฉันได้เพิ่ม:

class SponsorprogramMailSystem implements MailSystemInterface {
  /**
   * Concatenate and wrap the e-mail body for plain-text mails.
   *
   * @param $message
   *   A message array, as described in hook_mail_alter().
   *
   * @return
   *   The formatted $message.
   */
  public function format(array $message) {
    $message['body'] = implode("\n\n", $message['body']);
    return $message;
  }
  /**
   * Send an e-mail message, using Drupal variables and default settings.
   *
   * @see http://php.net/manual/en/function.mail.php
   * @see drupal_mail()
   *
   * @param $message
   *   A message array, as described in hook_mail_alter().
   * @return
   *   TRUE if the mail was successfully accepted, otherwise FALSE.
   */
  public function mail(array $message) {
    $mimeheaders = array();
    foreach ($message['headers'] as $name => $value) {
      $mimeheaders[] = $name . ': ' . mime_header_encode($value);
    }
    $line_endings = variable_get('mail_line_endings', MAIL_LINE_ENDINGS);
    return mail(
      $message['to'],
      mime_header_encode($message['subject']),
      // Note: e-mail uses CRLF for line-endings. PHP's API requires LF
      // on Unix and CRLF on Windows. Drupal automatically guesses the
      // line-ending format appropriate for your system. If you need to
      // override this, adjust $conf['mail_line_endings'] in settings.php.
      preg_replace('@\r?\n@', $line_endings, $message['body']),
      // For headers, PHP's API suggests that we use CRLF normally,
      // but some MTAs incorrectly replace LF with CRLF. See #234403.
      join("\n", $mimeheaders)
    );
  }
}

และฉันสามารถส่งอีเมลด้วย html ส่วนนั้นใช้ได้

แต่เมื่อฉันพยายามแนบไฟล์มันจะไม่มาถึงกล่องจดหมายของฉัน ฉันแนบไฟล์ทดสอบของฉันเช่นนี้:

$attachment = array(
        'filecontent' => file_get_contents(DRUPAL_ROOT . '/README.txt'),
        'filename' => 'test.txt',
        'filemime' => 'text/plain',
      );

แต่ไม่มีอะไรมาถึง

ใครรู้ว่าฉันสามารถแก้ไขได้อย่างไร


ไม่ชัดเจนสำหรับฉันว่ามีการเพิ่ม $ เอกสารแนบในตัวอย่างของคุณอย่างไร
David Meister

คำตอบ:


17

อาจมีวิธีอื่น แต่ฉันพบว่าระบบmailsและmimemailจะต้องติดตั้งเพื่อส่งอีเมลพร้อมไฟล์แนบ ดังนั้นติดตั้งสองโมดูลนี้ก่อน

จากนั้นใช้ hook_mail เพื่อส่งไฟล์แนบไปที่ข้อความ $

/**
 * Implements hook_mail().
 */
function mymodule_mail($key, &$message, $params) {
  $message['subject'] = $params['subject'];
  $message['body'][] = $params['body'];

  // Add attachment when available.
  if (isset($params['attachment'])) {
    $message['params']['attachments'][] = $params['attachment'];
  }
}

มีสองวิธีในการเพิ่มสิ่งที่แนบคุณสามารถส่งไฟล์เนื้อหาหรือ filepath เมื่อเพิ่มไฟล์ที่ไม่มีการจัดการเป็นไฟล์แนบ (ไม่ได้บันทึกใน DB) หรือส่งผ่านวัตถุไฟล์เมื่อเพิ่มไฟล์ที่มีการจัดการ

เมื่อเพิ่มไฟล์ที่ไม่มีการจัดการ:

$attachment = array(
  'filepath' => $filepath, // or $uri
);

หรือ

$attachment = array(
  'filecontent' => file_get_contents($uri),
  'filename' => $filename,
  'filemime' => 'application/pdf'
);

โดยใช้วิธีการจัดการไฟล์คุณอาจได้รับข้อผิดพลาด php สองครั้งภายในวันที่ 8 มกราคม 2558 รวมถึง

เมื่อเพิ่มไฟล์ที่มีการจัดการ:

$attachment = file_load($fid);

จากนั้นส่งอีเมลโดย:

$params = array(
  'key' => 'my_email_template',
  'to' => 'test@example.com',
  'from' => 'test@example.com',
  'subject' => 'Test email',
  'body' => 'test',
  'attachment' => $attachment
);

drupal_mail('mymodule', $key, $to, $language, $params, $from);

ต้องตั้งค่าส่วนหัวใด ๆ
siddiq

@siddiq ไม่จำเป็นต้องตั้งค่าส่วนหัวใด ๆ
eric.chenchao

3
$attachment = array(
      'filecontent' => $filepathname,
      'filename' => $namefile,
      'filemime' => 'application/pdf'
      );
//where $filepathname should contain the path to the file and $filename should contain the name of the file.
$to = 'test@example.com'; // emails
$from = 'test@example.com';

$params = array(
  'headers' => array('Content-Type' => 'text/html'),
  'key' => 'test',
  'subject' => 'Test email',
  'body' => 'test',
  'attachment' => $attachment
);

drupal_mail($module, $key, $to, $language, $params, $from, $send = TRUE);

สิ่งนี้ใช้ได้สำหรับฉัน


ดูเหมือนว่าแปลกที่จะเติมเงินเข้าและออกจากใน $ params แต่ไม่ได้ตั้งค่า $ เป็นและ $ จาก ... ฉันไม่แน่ใจว่าจะใช้งานได้หรือไม่
drewish

2

ฉันจำได้ว่าฉันต้องการก่อนหน้านี้ฉันลองและใช้งานได้สำหรับฉัน

function mymodule_mail($key, &$message, $params) {
  $data['user'] = $params['from'];
  $account = $data['user']->name;

  $file_content = file_get_contents('some/file/path');

  $attachments = array(
     'filecontent' => $file_content,
     'filename' => 'example-' . $account,
     'filemime' => 'application/pdf',
   );

  switch($key) {
    case 'notice':

      $langcode = $message['language']->language;
      $message = drupal_mail($module, $key, $to, $language, $params, $from, $send);
      $message['subject'] = 'example submission from '. $account;
      $message['body'][] =
        '<p>'. $account .' has submitted an example.</p>';
      $message['params']['attachments'][] = $attachments;
    $system = drupal_mail_system($module, $key);
    // Format the message body.
    $message = $system->format($message);
    // Send e-mail.
    $message['result'] = $system->mail($message);

    if($message['result'] == TRUE) {
        drupal_set_message(t('Your message has been sent.'));
    }
    else{
        drupal_set_message(t('There was a problem sending your message and it was not     sent.'), 'error');
    }
      break;
  }
}

1
file_get_contents()ทำเคล็ดลับสำหรับฉัน หากไม่ได้ใช้งานฉันได้รับไฟล์แนบที่เสียหาย ขอบคุณ
anou

@ anou ฉันมีความสุขทางออกของฉันช่วยอีกหนึ่งหลังจาก 2 ปี: D
Yusef
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.