Jump to content
  • 0

Прикрепить файл к письму mail()


banyman
 Share

Question

Здравствуйте!

Пробую реализовать прикрепление файла в письму... сама суть понятна: первым делом загружаем файл на сервер, затем прикрепляем к письму. Закачка файла на сервер проходит - тут все ок. А вот прикрепить аттачмент - не получается. С картинкой получается - то есть в теле письма приходит текст с картинкой. А вот вордовский и архив не прикрепляется во вложение.....

Делаю так:

$file_name=$files_n; // путь к файлу ./temp/files_123.docx
$subj="Отправка изображения";
$bound="web-1234";
$headers="From: \"Name\" <admin@mail.ru>\n";
$headers.="To: mail@mail.ru\n";
$headers.="Subject: $subj\n";
$headers.="Mime-Version: 1.0\n";
$headers.="Content-Type: multipart/alternative; boundary=\"$bound\"\n";
$body="--$bound\n";
$body.="Content-type: text/html; charset=\"UTF-8\"\n";
$body.="Content-Transfer-Encoding: 8bit\n\n";
$body.="<h3>Привет</h3>
Это проба отправки письма с прикрепленной картинкой.<BR>
А вот и сама картинка:<BR>
<img src=\"cid:web_img_1\">";
$body.="\n\n--$bound\n";
$body.="Content-Type: multipart/alternative; name=\"".basename($file_name)."\"\n";
$body.="Content-Transfer-Encoding:base64\n";
$body.="Content-Disposition:attachment\n";
$body.="Content-ID: <web_img_1>\n\n";
//$f=fopen($file_name,"rb");
$body.=base64_encode($file_name)."\n";
$body.="--$bound--\n\n";
mail("mail@mail.ru", $subj, $body, $headers);

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0
Здравствуйте!

Пробую реализовать прикрепление файла в письму... сама суть понятна: первым делом загружаем файл на сервер, затем прикрепляем к письму. Закачка файла на сервер проходит - тут все ок. А вот прикрепить аттачмент - не получается. С картинкой получается - то есть в теле письма приходит текст с картинкой. А вот вордовский и архив не прикрепляется во вложение.....

Делаю так:

$file_name=$files_n; // путь к файлу ./temp/files_123.docx
$subj="Отправка изображения";
$bound="web-1234";
$headers="From: \"Name\" <admin@mail.ru>\n";
$headers.="To: mail@mail.ru\n";
$headers.="Subject: $subj\n";
$headers.="Mime-Version: 1.0\n";
$headers.="Content-Type: multipart/alternative; boundary=\"$bound\"\n";
$body="--$bound\n";
$body.="Content-type: text/html; charset=\"UTF-8\"\n";
$body.="Content-Transfer-Encoding: 8bit\n\n";
$body.="<h3>Привет</h3>
Это проба отправки письма с прикрепленной картинкой.<BR>
А вот и сама картинка:<BR>
<img src=\"cid:web_img_1\">";
$body.="\n\n--$bound\n";
$body.="Content-Type: multipart/alternative; name=\"".basename($file_name)."\"\n";
$body.="Content-Transfer-Encoding:base64\n";
$body.="Content-Disposition:attachment\n";
$body.="Content-ID: <web_img_1>\n\n";
//$f=fopen($file_name,"rb");
$body.=base64_encode($file_name)."\n";
$body.="--$bound--\n\n";
mail("mail@mail.ru", $subj, $body, $headers);

$headers.="Content-Type: multipart/mixed; boundary=\"$bound\"\n";

$body.="Content-Disposition: attachment; filename==?UTF-8?B?". base64_encode($file_name). "?=\n\n";

ну если это не картинка, то $body.="Content-ID: <web_img_1>\n\n"; не надо

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy