$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
// More headers
$headers .= 'From: <[email protected]>' . "\r\n";
$headers .= 'Cc: [email protected]' . "\r\n";
$email = new PHPMailer();
$email->isHTML(true);
$email->From = '<[email protected]>';
$email->FromName = 'Name';
$email->Subject = $Subject; //subject name
$email->Body = $txt; //This is html message
$email->AddAddress($to);
$email->AddAttachment("http://www.domain.in/" , "invoice.pdf", 'base64', 'application/octet-stream');
$email->Send();
ファイルは送信されません。上記の部分で変数をパラメータとして渡しても静的な値では動作しません。PHPでphpmailer関数の動的値を渡す方法
を進めています。 @Pedro Lobito –