0
ユーザーは自分のウェブサイトの連絡先に添付ファイルを追加できますが、今は添付ファイルをPHPMailerスクリプトに含める方法はありません。PHPMailerに添付ファイルを追加するには?
phpmailerの:http://pastebin.com/B2Wj9nur HTML:http://pastebin.com/qwNsxD4r
ユーザーは自分のウェブサイトの連絡先に添付ファイルを追加できますが、今は添付ファイルをPHPMailerスクリプトに含める方法はありません。PHPMailerに添付ファイルを追加するには?
phpmailerの:http://pastebin.com/B2Wj9nur HTML:http://pastebin.com/qwNsxD4r
PLSがテストされていない見て、持っています。説明のカップルがあります
$mail = new PHPMailer(true);
if (isset($_FILES['uploaded_file']) &&
$_FILES['uploaded_file']['error'] == UPLOAD_ERR_OK) {
$mail->AddAttachment($_FILES['uploaded_file']['tmp_name'],
$_FILES['uploaded_file']['name']);
}
$mail->AddAddress('[email protected]', 'John Doe');
$mail->SetFrom('[email protected]', 'First Last');
//....
//other email code
$mail->Send();
:http://stackoverflow.com/questions/11764156/send-file-attachment-from-form-using-phpmailer-and-php –