2011-09-01 68 views
0

我想在點擊提交按鈕後通過電子郵件發送填寫的表單,而不會提示前景或任何郵件。它怎麼能做到?發送電子郵件填寫PDF表格

+0

對不起,我不明白你的問題。您正在談論的PDF表單的形式?它是一個網站嗎?你有什麼嘗試?你在服務器上嗎? Windows,Linux,Mac或其他東西? – steenhulthin

+0

它是網站上的PDF格式。用戶將填寫表格並點擊提交。 – nav100

+0

什麼網頁環境(asp.net或其他)?你可以訪問郵件服務器(SMTP)嗎?你到目前爲止嘗試了什麼? – steenhulthin

回答

0

您的表單可以提交到您網站上的網址。該URL處的腳本可以捕獲表單內容並使用SMTP服務器將其發送出去。這與使用HTML表單無異,有些人喜歡PDF表單。 PDF表格可以下載,填寫,打印,然後手動或通過蝸牛郵件呈現。

0

我創建了PDF表單並添加了一個按鈕,然後提交表單。在這個提交表單的行爲中,我告訴它PDF是完整的文檔。

然後我給它一個URL鏈接到一個PHP頁面,如mail_my_form.php

然後創建一個PHP的形式,並把它命名上面一樣,mail_my_form.php。

最後一件事是在這個php代碼所在的位置創建一個名爲pdfs的文件夾。 (。所以,如果你把PHP在一個文件夾,名爲電子郵件,然後郵件的文件夾內,你需要另外一個文件夾,名爲PDF文件)

現在是什麼這個腳本的作用是:

  • 保存PDF到文件名稱pdfs。
  • 然後它將文件附加到電子郵件併發送。
  • 然後從文件夾pdfs中刪除文件以節省空間。 (如果你願意的話,你可以刪除刪除功能以將你的表格保存在你的FTP上。)

這是它。

$fileatt = date("d-m-Y-His") . ".pdf"; // Creates unique PDF name from the date 
copy('php://input',"pdfs/".$fileatt); // Copies the pdf form data to a folder named pdfs 
$fileatt = "pdfs/".$fileatt; // Path to the file gives the pdfs folder plus the unique file name we just assigned 
$fileatt_type = "application/pdf"; // File Type 
$fileatt_name = "Application Form_".$fileatt.".pdf"; // Filename that will be used for the file as the attachment when it is sent 

$email_from = "mywebsite"; // Who the email is from 
$email_subject = "Completed online Applications"; // The Subject of the email 
$email_message = "Please find a recent online application attached. 
"; 
$email_message .= "Any problems please email me... 
"; // Message that the email has in it 

$email_to = "[email protected]"; // Who the email is to 

$headers = "From: ".$email_from; 

//no need to change anything else under this point 

$file = fopen($fileatt,'rb'); 
$data = fread($file,filesize($fileatt)); 
fclose($file); 

$semi_rand = md5(time()); 
$mime_boundary = "==Multipart_Boundary_x{$semi_rand}x"; 

$headers .= "\nMIME-Version: 1.0\n" . 
"Content-Type: multipart/mixed;\n" . 
" boundary=\"{$mime_boundary}\""; 

$email_message .= "This is a multi-part message in MIME format.\n\n" . 
"--{$mime_boundary}\n" . 
"Content-Type:text/html; charset=\"iso-8859-1\"\n" . 
"Content-Transfer-Encoding: 7bit\n\n" . 
$email_message .= "\n\n"; 

$data = chunk_split(base64_encode($data)); 

$email_message .= "--{$mime_boundary}\n" . 
"Content-Type: {$fileatt_type};\n" . 
" name=\"{$fileatt_name}\"\n" . 
//"Content-Disposition: attachment;\n" . 
//" filename=\"{$fileatt_name}\"\n" . 
"Content-Transfer-Encoding: base64\n\n" . 
$data .= "\n\n" . 
"--{$mime_boundary}--\n"; 

$ok = @mail($email_to, $email_subject, $email_message, $headers); 

if($ok) { 
unlink($fileatt); //NOW WE DELETE THE FILE FROM THE FOLDER pdfs 
Header("Location: nextpage.php"); //where do we go once the form has been submitted. 

} else { 
die("Sorry but the email could not be sent. Please go back and try again!"); 
} 
相關問題