Guest User

Untitled

a guest
Jan 12th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. $separator = (uniqid(time()));
  2. $headers .= "Content-Type: multipart/mixed; boundary=$separator" . "n";
  3.  
  4. $body = "--$separatorn";
  5. $body .= "Content-type: text/html; charset=UTF-8n"; // кодировка письма
  6. $body .= "Content-Transfer-Encoding: 8bitnn";
  7. $body .="Привет. <br>Здесь можно использовать текст в формате <b>HTML</b> <br> "; // и т.д.
  8.  
  9. for ($j=0;$j<count($files); $j++)
  10. {
  11. $file=$path_file."soc_price".$files[$j].".zip";
  12. $body.= "--$separatorn";
  13. $filetype= mime_content_type($file);
  14. $body.= "Content-Type: "$filetype"; name==?utf-8?B?".base64_encode("soc_price".$files[$j].".zip")."?=n";
  15. $body.= "Content-Transfer-Encoding: base64n";
  16. $body.= "Content-Disposition: attachment; filename==?utf-8?B?".base64_encode("soc_price".$files[$j].".zip")."?=nn";
  17. $body.= chunk_split(base64_encode(file_get_contents($file)))."n";
  18. }
  19. }
  20.  
  21. $body.= "--".$separator ."--n";
Add Comment
Please, Sign In to add comment