2009-10-22 3 views
3

Я исследовал через Интернет, но не смог найти то, что мне нужно:/файл электронной почты через форму php

У меня есть контактная форма, (php). У меня нет базы данных. это простая электронная почта электронной почты, но теперь мне нужно сделать это с прикрепленным файлом:/как я могу отправить файл электронной почты через контактную форму? посетитель будет просматривать любой файл со своего компьютера и отправлять электронную почту через форму.

оцените !!

+0

Это объясняется здесь: http://www.webcheatsheet.com/php/send_email_text_html_attachment.php –

+0

спасибо за @Vatos связи. Мне действительно нужно выяснить, как прикреплять файл через форму (ввод файла). пример по ссылке выглядит не через вход в файл формы. –

+0

Это то же самое, просто замените: chunk_split (base64_encode (file_get_contents ('attachment.zip'))) chunk_split (base64_encode (file_get_contents ($ _ FILES ['your_file_input_name'] ['tmp_name'] '))) –

ответ

1

Я взглянул на ссылку в комментариях и убрал несколько вещей в функцию. Во-первых, я использовал ассоциативный массив аргументов и heredocs, поскольку использование php-тегов и буферизации вывода в примере не было точно чистым (или таким же чистым, как PHP).

http://aramk.com/php/php-sending-an-email-attachment/

emailFile(array(
    'to' => '[email protected]', 
    'from' => '[email protected]', 
    'subject' => 'Some Subject', 
    'message' => '<b>Hello!</b>', 
    'plain ' => 'Get a new email client!', 
    'file' => '/path/to/file' 
)); 

Вы можете пройти по пути к файлу из $_FILES в "file" аргумента.

0

Используйте сценарий загрузки файлов, который вы можете найти в Интернете (например, http://www.w3schools.com/php/php_file_upload.asp). Затем у вас есть временный файл, назовем его file_to_send. Затем просто используйте код, как указано в комментариях I.devries (http://webcheatsheet.com/php/send_email_text_html_attachment.php) для отправки вложения вместе с вашей почтой.

Ниже вы можете найти скопированный код с сайтов, упомянутых выше, но с необходимыми настройками.

HTML:

<form action="upload_file.php" method="post" enctype="multipart/form-data"> 
    <label for="file_to_send">Filename:</label> 
    <input type="file" name="file_to_send" id="file_to_send"><br> 
    <input type="submit" name="submit" value="Submit"> 
</form> 

PHP:

<?php 
//define the receiver of the email 
$to = '[email protected]'; 
//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: [email protected]\r\nReply-To: [email protected]"; 
//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($_FILES['file_to_send']['tmp_name']))); 
//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"; 
?> 
Смежные вопросы