使用 Perl 通過 SMTP 協議發信
# Swaks is an smtp of CURL, install it first:
curl http://www.jetmore.org/john/code/swaks/files/swaks-20130209.0/swaks -o swaks
# Set the permissions for the script so you can run it
chmod +x swaks
# It's based on perl, so install perl
sudo apt-get -y install perl
# now send!
./swaks --auth \
--server smtpdm.aliyun.com \
--au domaintest@dm.aliyun.com \
--ap ***** \
--from domaintest@dm.aliyun.com \
--to test@test.com \
--reply-to 自定義回信地址 \
--h-Subject: "Hello" \
--body 'Testing mail!'
注:請在 —au 后替換發信地址;—ap 后替換 SMTP 密碼;—from后替換發信地址;—to 后替換收信地址。
文檔內容是否對您有幫助?