溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

windows下命令行發(fā)送郵件blat.exe

發(fā)布時(shí)間:2020-08-05 02:49:24 來源:網(wǎng)絡(luò) 閱讀:3001 作者:GoDevops 欄目:系統(tǒng)運(yùn)維

    由于部門老大做SVN的自動(dòng)發(fā)送郵件,但是由于服務(wù)器是windows,雖然郵件客戶端很多,但是基于命令行的客戶端還是很少的,后面老大就找到了blat.exe這個(gè)軟件,由于他多次嘗試失敗,就讓我測(cè)試,經(jīng)過測(cè)試,發(fā)現(xiàn)非常的簡(jiǎn)單,功能挺強(qiáng)大,是一款很不錯(cuò)的開源工具!

BLAT官網(wǎng):http://www.blat.net/

采用版本:blat3217 (64位程序)

基本步驟:

(1)下載軟件,并對(duì)其設(shè)置環(huán)境變量,設(shè)置環(huán)境變量會(huì)有很多的好處,我們不必要糾結(jié)目錄問題;

(2)命令行blat

 

 C:\Users\Administrator>blat
    Blat v2.7.6 w/GSS encryption (build : Oct 25 2011 21:12:01)

    Win32  console utility to send mail via SMTP or post to usenet via NNTP
    by P.Mendes,M.Neal,G.Vollant,T.Charron,T.Musson,H.Pesonen,A.Donchey,C.Hyde
  http://www.blat.net
syntax:
  Blat <filename> -to <recipient> [optional switches (see below)]
  Blat -SaveSettings -f <sender email addy> -server <server addr>
       [-port <port>] [-try <try>] [-profile <profile>]
       [-u <login id>] [-pw <password>]
  or
  Blat -install <server addr> <sender's addr> [<try>[<port>[<profile>]]] [-q]
  Blat -profile [-delete | "<default>"] [profile1] [profileN] [-q]
  Blat -h

基本就是兩步,第一步一個(gè)簡(jiǎn)單的注冊(cè),第二部就可以發(fā)送郵件

 

C:\Users\Administrator>blat  -install smtp.*******.com    ***@wi****.com 3 25

發(fā)送命令:

C:\Users\Administrator>blat c:\www.txt -to 18**@163.com  -u  **@wi***.com  -pw  *****  -charset Gb2312
Blat v3.2.17 (build : Aug 10 2016 22:32:51)
64-bit Windows, Full, Unicode

Sending c:\www.txt to 18***@163.com
Subject: Contents of file: www.txt
Login name is ****@wi****.com
Try number 1 of 3.

 

以下部分我們未用到,但是感覺不錯(cuò)所以就收集了,

http://jfxwc.blog.163.com/blog/static/650205020105544357851/

批命令例子:
----------------- 例子開始 -----------------------------------------
@echo off
:::::::::::::: 參數(shù)設(shè)置::::::::::::::
set from=xxx@163.com
set user=xxx
set pass=xxx
set to=xxx@163.com
set subj=測(cè)試
set mail=mail_body.txt
set server=smtp.163.com
set attach=attach.rar
set debug=-debug -log blat.log -timestamp
::::::::::::::::: 運(yùn)行blat :::::::::::::::::
rem blat %mail% -to %to% -base64 -charset Gb2312 -subject %subj% -server %server% -f %from% -u %user% -pw %pass% -attach %attach% %debug%
----------------- 例子結(jié)束 -----------------------------------------

經(jīng)過測(cè)試,中文內(nèi)容沒有問題(注意源文件的編碼),支持 163 之類的系統(tǒng),
mail_body.txt : 正文
attach.rar : 附件

 

 

 

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI