Drupal 6 Mimemail带附件

时间:2011-04-18 12:04:08

标签: drupal attachment mime-mail

任何人都可以帮助我使用drupal mimemail进行附件我使用下面提到的代码来发送特定电子邮件中的附件文件,但不知何故它不起作用,kinldy帮我提前谢谢

    $body = "test body with attachments";
    $subject = "My test message";

$attachments[]=array(
    'filepath' => file_directory_path().'/document.pdf',
    'filename' => 'wonderful.pdf',
    'filemime' => 'application/pdf',
);

mimemail("xxxxx@gmail.com", "xxxxxx2@gmail.com", $subject, $body, NULL, array(), NULL, $attachments,'');

1 个答案:

答案 0 :(得分:0)

我正在做一些非常相似的事情。我的代码基本上是:

$message['attachments'][] = array(
  'filepath' => $zipfilepath,
  'filename' => 'my-attachment.zip',
  'filemime' => 'application/zip',
);

从我的hook_mail模块回调中。见http://api.drupal.org/api/drupal/developer--hooks--core.php/function/hook_mail/6

您确定已完成以下操作:

  • 启用“mimemail”模块;
  • 选中admin中的选项为“为所有邮件使用mime邮件”;
  • 选择“mimemail”作为“电子邮件引擎”(位于管理页面的底部)。

我的工作正常。我也安装了SMTP模块,它适用于选择作为电子邮件引擎的任一模块。