以qq郵箱為例:
1、登入qq郵箱——設定——賬戶,開啟裡面的smtp服務,具體操作可參考qq幫助中心。開啟成功以後就可以生成授權碼啦。
2、安裝nodemailer外掛程式,新建乙個test.js檔案,寫下如下幾行**
const nodemailer=require('nodemailer');
// 1、建立
const transport=nodemailer.createtransport(
});let number=math.random();
// 2、郵件具體資訊
const mailoptions=`//郵件內容
}// 3、傳送郵件
transport.sendmail(mailoptions,function(error,info)else
})
是什麼郵箱就寫smtp.***.com,不同郵箱的埠不一樣,qq郵箱的是465
3、最後,執行命令node test.js,不一會就會接收到郵箱啦。
VC 實現傳送郵件功能
郵件系統通常採用smtp作為傳送協議,pop3作為接受協議 具體內容參考rfc821 rfc1225 無論是發郵件,還是收郵件都必須要與郵件伺服器連線,再通過郵件資訊結構傳送郵件。vc裡提供了三個類cpop3 連線接受郵件伺服器 csmtp 連線傳送郵件伺服器 cmailmessage 郵件資訊結構...
phpMailer實現傳送郵件功能
require once phpmailer class.phpmailer.php require once phpmailer class.smtp.php mname this getparam mname cname this getparam cname email this getpar...
SAP ABAP實現傳送郵件功能
try.建立傳送請求 l send request cl bcs create persistent 設定傳送內容 l document cl document bcs create document i type raw i text i content i importance 1 i subj...