インターネットで調べましたが、必要なものが見つかりませんでした:/
お問い合わせフォーム(php)があります。私はデータベースを持っていません。これは単純な php メール フォームですが、ファイルを添付して作成する必要があります :/ お問い合わせフォームからファイルをメールで送信するにはどうすればよいですか? 訪問者は自分のコンピューターから任意のファイルを参照し、フォームを介して電子メールを送信します。
感謝!!
コメントのリンクを見て、いくつかのものを関数にクリーンアップしました。1 つには、引数とヒアドキュメントの連想配列を使用しました。これは、この例での php タグの使用と出力バッファリングが完全にクリーンではなかった (または PHP が取得するほどクリーンではない) ためです。
http://aramk.com/php/php-sending-an-email-attachment/
emailFile(array(
'to' => 'your@email.com',
'from' => 'my@email.com',
'subject' => 'Some Subject',
'message' => '<b>Hello!</b>',
'plain ' => 'Get a new email client!',
'file' => '/path/to/file'
));
からのファイル パスを引数に渡すことができ$_FILES
ます"file"
。
インターネットで見つけられるようなファイル アップロード スクリプトを使用します (例: 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 = 'youraddress@example.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($_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";
?>