Wysyłaj załączniki za pomocą drupal_mail

14

Próbuję wysyłać załączniki za pomocą mojego e-maila od Drupala. W moim module niestandardowym dodałem:

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

i mogę wysyłać e-maile za pomocą HTML, ta część działa.

Ale kiedy próbuję załączyć plik, nie dociera on do mojej skrzynki odbiorczej. Załączam mój plik testowy w następujący sposób:

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

Ale nic nie dociera.

Czy ktoś wie, jak to naprawić?

andeersg
źródło
Nie jest dla mnie jasne, w jaki sposób dodano załącznik $ w twoim przykładzie.
David Meister

Odpowiedzi:

17

Mogą istnieć inne sposoby, ale stwierdziliśmy, że mailsystem i mimemail moduły mają być zainstalowane, aby wysłać e-mail z załącznikiem. Najpierw zainstaluj te dwa moduły.

Następnie zaimplementuj hook_mail, aby przekazać załącznik do wiadomości $

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

Istnieją dwa sposoby dodawania załącznika: możesz przekazać zawartość pliku lub ścieżkę pliku podczas dodawania niezarządzanego pliku jako załącznika (niezarejestrowanego w DB) lub przekazać obiekt pliku podczas dodawania pliku zarządzanego.

Podczas dodawania niezarządzanego pliku:

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

lub

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

Używając metody plików, prawdopodobnie dostaniesz dwa błędy php do 08 stycznia 2015 włącznie

Podczas dodawania zarządzanego pliku:

$attachment = file_load($fid);

Następnie wyślij e-mail przez:

$params = array(
  'key' => 'my_email_template',
  'to' => '[email protected]',
  'from' => '[email protected]',
  'subject' => 'Test email',
  'body' => 'test',
  'attachment' => $attachment
);

drupal_mail('mymodule', $key, $to, $language, $params, $from);
eric.chenchao
źródło
jakieś nagłówki muszą być ustawione?
siddiq,
@siddiq nie trzeba ustawiać żadnych nagłówków
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 = '[email protected]'; // emails
$from = '[email protected]';

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

To zadziałało dla mnie.

Aparna
źródło
Dziwne wydaje się zapełnianie do i od $ params, ale nie ustawianie $ na i $ od ... Nie jestem pewien, czy to zadziała.
narysowany
2

Pamiętam, że chciałem to zrobić wcześniej, próbowałem tego i pracowałem dla siebie

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;
  }
}
Yusef
źródło
1
file_get_contents()zrobił dla mnie lewę. jeśli go nie używałem, dostawałem uszkodzone załączniki. Dzięki.
anou
@anou Cieszę się, że moje rozwiązanie pomaga innym po 2 latach: D
Yusef