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

그러나 아무것도 도착하지 않았다.

아무도 내가 고칠 수있는 방법을 알고 있습니까?


귀하의 예에서 $ attachment가 어떻게 추가되는지는 확실하지 않습니다.
David Meister

답변:


17

이 다른 방법으로 수 있습니다,하지만 난 것으로 나타났습니다 mailsystemmimemail 모듈은 첨부 파일로 이메일을 보내도록 설치해야합니다. 따라서이 두 모듈을 먼저 설치하십시오.

그런 다음 hook_mail을 구현하여 첨부 파일을 $ message에 전달하십시오.

/**
 * 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'];
  }
}

첨부 파일을 추가하는 두 가지 방법이 있습니다. 관리되지 않는 파일을 첨부 파일로 추가 할 때 파일 내용이나 파일 경로를 전달하거나 (DB에 기록되지 않음) 관리 파일을 추가 할 때 파일 객체를 전달할 수 있습니다.

관리되지 않는 파일을 추가 할 때 :

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

또는

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

filecontent 방식을 사용하면 2015 년 1 월 8 일까지 두 가지 PHP 오류가 발생합니다.

관리되는 파일을 추가 할 때 :

$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에서 to와 from을 채우는 것이 이상하지만 $ to와 $ from을 설정하지 않은 것 같습니다 ... 이것이 확실하지 않을 것입니다.
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.