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

लेकिन कुछ भी नहीं आता है।

किसी को पता है कि मैं इसे कैसे ठीक कर सकता हूं?


यह मेरे लिए स्पष्ट नहीं है कि आपके उदाहरण में $ लगाव कैसे जोड़ा जाता है।
डेविड मिस्टर

जवाबों:


17

अन्य तरीके भी हो सकते हैं, लेकिन मैंने पाया है कि मेल भेजने के लिए मेल भेजने के लिए मेलसिस्टम और मीमाइल मॉड्यूल स्थापित करना होगा। तो पहले इन दोनों मॉड्यूल को स्थापित करें।

फिर $ संदेश के लिए अनुलग्नक पास करने के लिए हुक_मेल लागू करें

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

अटैचमेंट को जोड़ने के दो तरीके हैं, आप फ़ाइलरहित या फ़ाइलपथ पास कर सकते हैं जब एक अप्रबंधित फ़ाइल को संलग्नक के रूप में जोड़ सकते हैं (डीबी में दर्ज नहीं) या प्रबंधित फ़ाइल जोड़ते समय फ़ाइल ऑब्जेक्ट पास करें।

अप्रबंधित फ़ाइल जोड़ते समय:

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

या

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

फाइलकेंट तरीके से उपयोग करने पर, आपको संभवतः 08 जनवरी, 2015 तक दो 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);

किसी भी हेडर को सेट करने की आवश्यकता है?
सिद्दीक

@ सिद्दीक को किसी भी हेडर को सेट करने की आवश्यकता नहीं है
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 में और से, लेकिन $ से और $ से सेट नहीं करने के लिए अजीब लगता है ... मुझे यकीन नहीं है कि यह काम करेगा।
जूल

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 मुझे खुशी है कि मेरा समाधान 2 साल बाद एक और मदद करता है: D
Yusef
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.