0

ユーザーが添付ファイルとともに電子メールを送信できるページを作成しようとしています。私はほとんどそこにいると思います。現在、メールを受信して​​いますが、添付ファイルのファイルサイズが空であるか、開こうとすると、開けないというメッセージが表示されます。どんな助けでも大歓迎です。

    function valid_email($Email)
{
    //new regex, didn't give me any errors...might be a bit more exact
  if (ereg('^[_a-zA-Z0-9-]+(\.[_a-zA-Z0-9-]+)*@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)*\.(([0-9]{1,3})|([a-zA-Z]{2,3})|(aero|coop|info|museum|name))$', $Email) != false)
    return true;
  else 
    return false;
}

function sendEmail($email){
    return  mail ($email['to'], $email['subject'], $email['message'], $email['headers']);
}


if ( strlen($_FILES['Resume_File']['name']) > 0 )
{   // If a file was uploaded, do some processing
    $filename = preg_replace('/[^a-zA-Z0-9._-]/', '', $_FILES['Resume_File']['name']);
    $filetype = $_FILES["Resume_File"]["type"];
    $filesize = $_FILES["Resume_File"]["size"];
    $filetemp = $_FILES["Resume_File"]["tmp_name"]; 
    $ext = substr($filename, strpos($filename,'.'), strlen($filename)-1);

    if ( !preg_match('/\.(doc|docx|odt|pdf|rtf|txt)/i', $ext) )
    {   $errors++;
        $errorLog .= "Upload filetype not supported.";
    }
    else if ( $filesize > 2000000 )
    {   $errors++;
        $errorLog .= "File size too high, up to 2MB is allowed.";
    }
    else
    {   // Looks like the file is good, send it with the email
        //$fp = fopen($filetemp, "rb");
        //$file = fread($fp, $filesize);
        //$file = chunk_split(base64_encode($file));

        //$email['headers'] .= "\n--{$num}\n";
        //$email['headers'] .= "Content-Type:{$filetype}";
        //$email['headers'] .= "name={$filename}r\n";
        //$email['headers'] .= "Content-Disposition: attachment; ";
        //$email['headers'] .= "filename={$filename}\n";
        //$email['headers'] .= "{$file}";

    }
}

// get posted data into local variables
$fname = trim(stripslashes($_POST['fname']));
$lname = trim(stripslashes($_POST['lname']));
$emailAddress = trim(stripslashes($_POST['email']));
$company = trim(stripslashes($_POST['company'])); 
$information = trim(stripslashes($_POST['information']));
$subject = trim(stripslashes($_POST['subject']));
$title = trim(stripslashes($_POST['title']));

//setup email
$to = 'me@me.com';
$subject = "Resume Submission";

$headers = "From: {$fname} {$lname} <{$emailAddress}>\r\n";

// prepare email body text
$message = "First Name: {$fname} <br>";
$message .= "Last Name: {$lname} <br>";
$message .= "Email: {$emailAddress} <br>";
$message .= "Title: {$title} <br><br>";
$message .= "Comments: {$information}";

if ( $errors == 0 ) {
    // Attachment headers

    //$to = "myemail@mydomain.com";
    //$from = "Website <website@mydomain.com>";
    //$subject = "Test Attachment Email";

    $separator = md5(time());

    // carriage return type (we use a PHP end of line constant)
    $eol = PHP_EOL;

    // attachment name
    //$filename = "document.pdf";

    //$pdfdoc is PDF generated by FPDF
    $attachment = chunk_split(base64_encode($pdfdoc));

    // main header
    $headers .= "From: ".$from.$eol;
    $headers .= "MIME-Version: 1.0".$eol; 
    $headers .= "Content-Type: multipart/mixed; boundary=\"".$separator."\"";

    // no more headers after this, we start the body! //

    $body = "--".$separator.$eol;
    $body .= "Content-Transfer-Encoding: 7bit".$eol.$eol;
    $body .= "This is a MIME encoded message.".$eol;

    // message
    $body .= "--".$separator.$eol;
    $body .= "Content-Type: text/html; charset=\"iso-8859-1\"".$eol;
    $body .= "Content-Transfer-Encoding: 8bit".$eol.$eol;
    $body .= $message.$eol;

    // attachment
    $body .= "--".$separator.$eol;
    $body .= "Content-Type: application/octet-stream; name=\"".$filename."\"".$eol; 
    $body .= "Content-Transfer-Encoding: base64".$eol;
    $body .= "Content-Disposition: attachment".$eol.$eol;
    $body .= $attachment.$eol;
    $body .= "--".$separator."--";

}



//sendEmail($email);

// validation

if ( $errors == 0 ) {

    if (valid_email($emailAddress) && $fname != "" && $lname != "") { //if return is true...
        mail($to, $subject, $body, $headers);
        echo 0; //Success
    }else { //otherwise
        echo 1; //Error
    }

} else {
    echo 1; //Error
}

ここで見つけたコードの一部を使用しています

PHP mail() 添付ファイルの問題

ありがとうございました!

4

2 に答える 2

1

mail()特に添付ファイルの追加などの高度なことをしようとすると、PHP の機能は非常に貧弱です。最も基本的な「サイト管理者に通知メールを送信する」タイプのメールにのみ使用する価値があり、それでも常に最適なソリューションとは限りません.

関数自体を操作しようとする試みはやめて、適切な名前のphpMailermail()などの適切な PHP メーラー クラスを使用するように切り替えることをお勧めします。

phpMailer を使用すると、PHP からメールを簡単に作成できます。添付ファイルの追加、HTML メールの作成など、必要なすべての機能を備えています。

しかし、phpMailer の最も優れた点は、電子メール ヘッダーをフォーマットする何十行ものコードを無駄にする必要がないことです。セパレーターと MIME タイプに関するものはすべて、数行の単純なコードに削減されます。読みやすく、保守しやすく、バグが発生しにくい。あなたはすべてのラウンドで勝ちます。

于 2013-01-10T11:15:44.057 に答える
0
//$pdfdoc is PDF generated by FPDF
    $attachment = chunk_split(base64_encode($pdfdoc));

$ pdfdocは、ページのどこにも言及されていません。それが問題だと思います:|

于 2013-01-10T11:13:31.543 に答える