将文件附件添加到插件

时间:2016-07-02 09:24:03

标签: javascript php ajax forms

任何人都可以帮助我吗? 我有这个插件,从这里开始:https://github.com/agragregra/uniMail 它非常完美,但它不支持表单中的文件附件,只支持文本输入。 这里的代码

$("form").submit(function() { //Change
    var th = $(this);
    $.ajax({
        type: "POST",
        url: "mail.php", //Change
        data: th.serialize()
    }).done(function() {
        alert("Thank you!");
        setTimeout(function() {
            // Done Functions
            th.trigger("reset");
        }, 1000);
    });
    return false;
});
来自mail.php的

和ofcourse代码

    <?php

$method = $_SERVER['REQUEST_METHOD'];

//Script Foreach
$c = true;
if ( $method === 'POST' ) {

    $project_name = trim($_POST["project_name"]);
    $admin_email  = trim($_POST["admin_email"]);
    $form_subject = trim($_POST["form_subject"]);
    $inp = trim($_POST["summary_file"]);


    foreach ( $_POST as $key => $value ) {
        if ( $value != "" && $key != "project_name" && $key != "admin_email" && $key != "form_subject" ) {
            $message .= "
            " . ( ($c = !$c) ? '<tr>':'<tr style="background-color: #f8f8f8;">' ) . "
            <td style='padding: 10px; border: #e9e9e9 1px solid;'><b>$key</b></td>
            <td style='padding: 10px; border: #e9e9e9 1px solid;'>$value</td>
        </tr>
        ";
    }
}
} else if ( $method === 'GET' ) {

    $project_name = trim($_GET["project_name"]);
    $admin_email  = trim($_GET["admin_email"]);
    $form_subject = trim($_GET["form_subject"]);


    foreach ( $_GET as $key => $value ) {
        if ( $value != "" && $key != "project_name" && $key != "admin_email" && $key != "form_subject" ) {
            $message .= "
            " . ( ($c = !$c) ? '<tr>':'<tr style="background-color: #f8f8f8;">' ) . "
            <td style='padding: 10px; border: #e9e9e9 1px solid;'><b>$key</b></td>
            <td style='padding: 10px; border: #e9e9e9 1px solid;'>$value</td>
        </tr>
        ";
    }
}
}

$message = "<table style='width: 100%;'>$message</table>";

function adopt($text) {
    return '=?UTF-8?B?'.base64_encode($text).'?=';
}

$headers = "MIME-Version: 1.0" . PHP_EOL .
"Content-Type: text/html; charset=utf-8" . PHP_EOL .
'From: '.adopt($project_name).' <'.$admin_email.'>' . PHP_EOL .
'Reply-To: '.$admin_email.'' . PHP_EOL;

mail($admin_email, adopt($form_subject), $message, $headers );

1 个答案:

答案 0 :(得分:0)

3个步骤:HTML,PHP&amp;邮件

此代码无法轻松调整以添加文件附件。您需要实施三个步骤:

将文件输入添加到html表单是非常基本的。您可以在互联网上找到各种示例。这不可能是一个绊脚石。

在PHP中处理文件上传可能有点棘手,但手册中对此进行了解释:http://php.net/manual/en/features.file-upload.php

您的代码使用mail()函数,这是非常基本的。您将不得不对多部分电子邮件进行编码,如果您发现这很困难,则超出您的能力范围。你最好使用像PHPMailer(https://github.com/PHPMailer/PHPMailer)这样的东西,不管你信不信,这使得这更容易。

将这三件事结合起来后,您就可以使用文件了。我认为除了Stack Overflow之外,还可以为您完成所有这些工作。如果你不能自己动手,你可以聘请某人为你做这件事。