PHP Mailer - файл вложений не открывается (когда я присоединяюсь с помощью мобильного браузера) - PullRequest
0 голосов
/ 11 марта 2019

У меня есть одна страница PHP для отправки электронной почты с приложением (форма карьеры).Я получил письма с правильным вложением ( Windows Chrome Браузер).

Вложение не открывается Размер файла: 0 Байт , когда я использую Android mobile - chrome Браузер (Примечание. Почта, полученная с вложением с мобильного телефона, но вложение не поддерживается)

Спасибо.

HTML:

<form type="submit" enctype="multipart/form-data">
    <input type="file" name="attachment">
    <button name="submit" type="submit">SEND</button>
</form>

PHP:

if(isset($_POST['submit'])){
extract($_POST);

$to="example@email.com";
$msg="email body";

require 'include/PHPMailer_master/src/PHPMailer.php';
require 'include/PHPMailer_master/src/SMTP.php';
require 'include/PHPMailer_master/src/Exception.php';
$mail = new PHPMailer\PHPMailer\PHPMailer(true);

enables exceptions
try {
    //Server settings
    $mail->SMTPDebug = 2;                        
    $mail->isSMTP();                                   
    $mail->Host = 'smtp.siteprotect.com'; 
    $mail->SMTPAuth = true;               
    $mail->Username = 'example@email.com';          
    $mail->Password = 'password';                   
    $mail->SMTPSecure = 'tls';                       
    $mail->Port = 587;                                  

    $mail->setFrom('example@email.com');
    $mail->addAddress($to);     

    $mail->addAttachment($_FILES['attachment']['tmp_name'], 
$_FILES['attachment']['name'] );      

    $mail->isHTML(true);   
    $mail->Subject = 'RESUME - Sales Engineer (from website careers page)';
    $mail->Body    = $msg;
    $mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
    $mail->send();
    echo '<script>alert("Message has been sent");</script>';
} catch (Exception $e) {
    echo '<script>alert("Message not sent");</script>';
    echo 'Message could not be sent. Mailer Error: ', $mail->ErrorInfo;
}
}
...