MimeMail: ekleri ile sorun

0 Cevap php

Ben ekleri ile e-postalar göndermek için Drupal mimemail modülü kullanıyorum. E-postaları doğru gönderdi, ancak ekleri değildir. Bu (Ben sadece modülünü etkin ettik) kullanın koddur:

$sender = 'mycompany@company.com';
$recipient = 'myemail@mail.com';
$subject = 'New order';
$body = 'Please, see the attachment.';
$plaintext = TRUE;
$headers = array();
$attachments[]=array(         
  'filepath' => 'invoices/sample.pdf',
  'filemime' => 'application/pdf',
);

mimemail($sender, $recipient, $subject, $body, $plaintext, $headers, $text = NULL, $attachments, $mailkey);

Emin olmak için pdf eki yolu ben tarayıcıdan eki indirmek için bu satırı yazdım ve çalışıyor doğru.

header('Location: invoices/sample.pdf');

Ayrıca, ben bu alternatif kod denedim. Ama yine de hiçbir şey ...

$file = new stdClass();
$file->filename = 'sample.pdf';
$file->filepath = 'invoices/sample.pdf';
$file->filemime = 'application/pdf';
mimemail($sender, $recipient, $subject, $body, $plaintext, $headers, $text = NULL, array($file), $mailkey);

ps. i don't think this, but is maybe because my hosting disallow to send attachments ? thanks

0 Cevap