利用vbs傳送郵箱

2021-09-25 23:07:07 字數 854 閱讀 4254

namespace = ""

set emailobj = createobject("cdo.message")

emailobj.from = "***[email protected]"'發件人,需修改

emailobj.to = "***[email protected]"'收件人,需修改

emailobj.subject = "請假打卡"'郵件主題

emailobj.htmlbody = "親愛的,你好:

rt"'郵件內容,支援html格式

emailobj.addattachment "c:\培訓筆記.txt"'郵件附件

with emailobj.configuration.fields

.item(namespace&"sendusing") = 2

.item(namespace&"smtpserver") = "smtp.163.com"'163的smtp伺服器

.item(namespace&"smtpserverport") =25

.item(namespace&"smtpauthenticate") = 1

.item(namespace&"sendusername") = "181***x"'使用者名稱,需修改

.item(namespace&"sendpassword") = "***xx"'郵箱密碼,需修改

.update

end with

emailobj.send

利用騰訊企業郵箱自動傳送郵件

using system.web.mail 傳送郵件的方法 郵件接收位址 郵件傳送位址 郵件主題 郵件內容 傳送郵件使用者名稱 傳送郵件密碼 smtp伺服器 public void sendemail string toemail,string fromemail,string subject,st...

phpmailer郵箱傳送

引入phpmailer的核心檔案 require once common phpmailer master src phpmailer.php require once common phpmailer master src smtp.php use phpmailer phpmailer 例項化p...

python 傳送郵箱

coding utf 8 import smtplib from email.mime.multipart import mimemultipart from email.mime.text import mimetext from email.mime.image import mimeimage...