Guest User

Untitled

a guest
May 26th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. $arquivo = $_FILES['arquivo'];
  2.  
  3. if ($arquivo['size'][0] != 0) {
  4. for ($i = 0; $i < count($arquivo ['tmp_name']); $i++) {
  5. $mail->AddAttachment($arquivo ['tmp_name'][$i], $arquivo['name'][$i]);
  6. }
  7. }
Add Comment
Please, Sign In to add comment