3

添付ファイルを配置するための入力ファイルがあるフォームがあります。メールで送信したいフォームにあるすべてのデータがたまたまありました。ただし、その前に、入力されたすべてのデータを別の php ページにリダイレクトし、get で受け取ります。

だから私の最初の質問は、他のphpページの添付ファイルのコンテンツをgetで取得するにはどうすればよいですか?

その後、新しいphpページのすべてのデータを確認した後、メールで送信するふりをします。このコードを使用する予定です:

    //define the receiver of the email 
$to = 'myemail@something.com'; 
//define the subject of the email 
$subject = 'Test email with attachment'; 
//create a boundary string. It must be unique 
//so we use the MD5 algorithm to generate a random hash 
$random_hash = md5(date('r', time())); 
//define the headers we want passed. Note that they are separated with \r\n 
$headers = "From: webmaster@example.com\r\nReply-To: webmaster@example.com"; 
//add boundary string and mime type specification 
$headers .= "\r\nContent-Type: multipart/mixed; boundary=\"PHP-mixed-".$random_hash."\""; 
//read the atachment file contents into a string,
//encode it with MIME base64,
//and split it into smaller chunks
$attachment = chunk_split(base64_encode(file_get_contents('attachment.zip'))); 
//define the body of the message. 
ob_start(); //Turn on output buffering 
?> 
--PHP-mixed-<?php echo $random_hash; ?>  
Content-Type: multipart/alternative; boundary="PHP-alt-<?php echo $random_hash; ?>" 

--PHP-alt-<?php echo $random_hash; ?>  
Content-Type: text/plain; charset="iso-8859-1" 
Content-Transfer-Encoding: 7bit

Hello World!!! 
This is simple text email message. 

--PHP-alt-<?php echo $random_hash; ?>  
Content-Type: text/html; charset="iso-8859-1" 
Content-Transfer-Encoding: 7bit

<h2>Hello World!</h2> 
<p>This is something with <b>HTML</b> formatting.</p> 

--PHP-alt-<?php echo $random_hash; ?>-- 

--PHP-mixed-<?php echo $random_hash; ?>  
Content-Type: application/zip; name="attachment.zip"  
Content-Transfer-Encoding: base64  
Content-Disposition: attachment  

<?php echo $attachment; ?> 
--PHP-mixed-<?php echo $random_hash; ?>-- 

<?php 
//copy current buffer contents into $message variable and delete current output buffer 
$message = ob_get_clean(); 
//send the email 
$mail_sent = @mail( $to, $subject, $message, $headers ); 
//if the message is sent successfully print "Mail sent". Otherwise print "Mail failed" 
echo $mail_sent ? "Mail sent" : "Mail failed"; 

しかし、「attachment.zip」がどこにあるのか疑問があります。何を入れればよいですか? この新しい PHP ページの添付ファイルのデータを取得する変数は?

前もって感謝します!

上記の部分を忘れる:

これは私の宣言であり、フォームの送信ボタンです:

<form id="formElem" name="formElem" enctype="multipart/form-data" action="" method="post">

<button name='enviar_candidatura' id='enviar_candidatura' value='enviar_candidatura' onclick='return false;' type='submit'>

上のボタンをクリックすると、次のjquery関数に入ります。

$('#enviar_candidatura').bind('click',function(){

    var conta_Duplicates;
    conta_Duplicates=dadosImportantes();
    //alert("Deu");
    var preenchimentoForm=true;
    //alert("Contasssss"+conta1);
    //var eventos=$countEventos;
    var eventos=conta_Duplicates[2];
    //alert("Wiggins"+eventos);
    //var empregos=$countEmpregos;
    var empregos=conta_Duplicates[1];
    //var cursos=$countCursos;
    var cursos=conta_Duplicates[0];

    //alert($countEmpregos);
    if($('#formElem').data('errors')){
        preenchimentoForm=false;

        dadosFormularios(form, preenchimentoForm, cursos, empregos, eventos);
        return false;
    }
    else{
        dadosFormularios(form, preenchimentoForm, cursos, empregos, eventos);
    }
}

それは私が困難を抱えているこの関数にあります。私が正しければ、フォーム要素に変数を割り当てて、関数「dadosFormularios」に渡すことができるようにする必要があるからです。

dadosFormularios(...) の内部に入ると、そこに呼び出したい

form.action = 'index.php?pagina=candidaturasB&'+ qstringA;

添付ファイル付きのメールを送信するphpページにリダイレクトします。

外国語のいくつかの変数について明確で申し訳ありませんでした。問題がないことを願っています。

4

1 に答える 1

0

記入しているフォームがenctype="multipart/form-data"必要でありmethod="post"、アップロードが機能するために必要です。

このような:

<form method="post" action="" enctype="multipart/form-data" id="myform" onsubmit="return checkForm(this)";>
    <input type="file" name="filename" />
    // ...........
</form>

その後、送信メールで を使用してファイルを取得できます。入力の名前と同じである必要がある$_FILES['filename']['tmp_name']ことに注意してください。filename

$attachment = chunk_split(base64_encode(file_get_contents($_FILES['filename']['tmp_name'])));

機能用

<script type="text/javascript">
    function checkForm(form){
        // process fieds
        return checkNextFunction(form);
    }

    function checkNextFunction(form){
         form.action = 'myurl.php';
         return true;
    }
</script>

JSFiddleを確認してください。

于 2012-08-29T09:32:38.617 に答える