Godaddy空間,PHP,郵件發送網頁表單的兩種方法

來源:互聯網
上載者:User

標籤: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,郵件發送網頁表單的兩種方法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.