Advertisement
Guest User

Email Attachment Creation

a guest
Feb 21st, 2020
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. $email_content .= "--$mime_boundary\r\n";
  2. $email_content .= "Content-Type: $file_type; name=".$short_name."\r\n";
  3. $email_content .= "Content-Disposition: attachment; filename=".$short_name."\r\n";
  4. $email_content .= "Content-Transfer-Encoding: base64\r\n";
  5. $email_content .= $data . "\r\n";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement