Friday, 15 August 2014

php - PHPMailer attachment can not be found - file cannot be found on file system -



php - PHPMailer attachment can not be found - file cannot be found on file system -

all every time 'file not found on file system'

<?php if($_post[upload]) { require_once('incs/phpmailer/phpmailer.php'); $upload = $_files['upload']['tmp_name']; $mail = new phpmailer; $mail->addaddress("email@email.com", "email"); $mail->addreplyto("info@site.com", "information"); $mail->wordwrap = 50; // set word wrap $mail->addattachment($upload); // add together attachment $mail->ishtml(true); // set email format html $mail->subject = "here subject"; $mail->body = "this message body"; $mail->send(); // send message } ?>

does have thought why happening?

much appreciated.

try this,

$upload = $_files['upload']['name'];

php phpmailer

No comments:

Post a Comment