標籤:php email 郵件伺服器 郵件
這裡採用的是Godaddy 的Linux主機,Windows主機應該也是類似,本人未嘗試。
第一種方法,利用php內建的mail()函數發送郵件
檔案組織,將123.html與send.php兩個檔案放在同一目錄下
123.html
<!DOCTYPE html>
<html>
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<form action="send.php" method="post">
<input type="text" name="name" >姓名</input><p/>
<input type="submit" value="ok">發送郵件</input>
</form>
</body>
</html>
send.php
<!DOCTYPE html>
<html>
<body>
<?php
$to = "[email protected]";
$subject = "主題";
$message = "Hello! ".$_POST["name"].",This is a simple email message.";
$from = "coder";
$headers = "From: $from";
if(mail($to,$subject,$message,$headers))
echo " Mail sent.";
else echo " Mail fail.";
?>
</body>
</html>
第二種方法,利用phpmailer開源類
檔案組織,將123.html與send.php放在同一目錄下,下載phpmailer並命名為phpmailer檔案夾,放在同一目錄。
Godaddy贈送企業郵箱,在控制台裡面添加一個郵箱帳號,便於下面SMTP郵箱帳號和密碼填寫。
123.html
<!DOCTYPE html>
<html>
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<form action="send.php" method="post">
<input type="text" name="name" >姓名</input><p/>
<input type="submit" value="ok">發送郵件</input>
</form>
</body>
</html>
send.php
<?php
header(‘Content-Type:text/html;Charset=utf-8‘);
require "phpmailer/class.phpmailer.php";
$mail = new PHPMailer;
$mail->isSMTP(); // 設定郵件使用SMTP
$mail->Host = ‘mail.site.com‘; // 郵件伺服器地址
$mail->SMTPAuth = true; // 啟用SMTP身分識別驗證
$mail->CharSet = "UTF-8"; // 設定郵件編碼
$mail->setLanguage(‘zh_cn‘); // 設定錯誤中文提示
$mail->Username = ‘[email protected]‘; // SMTP 使用者名稱,即個人的郵箱地址
$mail->Password = ‘123456‘; // SMTP 密碼,即個人的郵箱密碼
$mail->SMTPSecure = ‘tls‘; // 設定啟用加密,注意:必須開啟 php_openssl 模組
$mail->Priority = 3; // 設定郵件優先順序 1:高, 3:正常(預設), 5:低
$mail->From = ‘[email protected]‘; // 寄件者郵箱地址
$mail->FromName = ‘寄件者名字‘; // 寄件者名稱
$mail->addAddress(‘[email protected]‘); // 添加接受者
$mail->ConfirmReadingTo = ‘[email protected]‘; // 添加發送回執郵件地址,即當收件者開啟郵件後,會詢問是否發生回執
$mail->addBCC(‘[email protected]‘); // 添加密送者,Mail Header不會顯示密送者資訊
$mail->WordWrap = 50; // 設定自動換行50個字元
$mail->addAttachment(‘/tmp/image.jpg‘, ‘one pic‘); // 添加多個附件
$mail->isHTML(true); // 設定郵件格式為HTML
$mail->Subject = ‘Here is the 主題‘;
$mail->Body = ‘This is the HTML 資訊 body <b>in bold!</b>. Time:‘;
$mail->AltBody = ‘This is the 主體 in plain text for non-HTML mail clients‘;
if(!$mail->send()) {
echo ‘Message could not be sent.‘;
echo ‘Mailer Error: ‘ . $mail->ErrorInfo;
exit;
}
echo ‘Message has been sent‘;
?>
Godaddy空間,PHP,郵件發送網頁表單的兩種方法