ページ

2021年3月5日金曜日

バッチファイルでPOWERSHELLからメールを送る1LINE

バッチファイルでPOWERSHELLからメールを送る1LINE

powershell -Command "send-mailmessage -To 'otori@hoge.com' -From 'report@hoge.com' -Subject 'TITLE' -Body 'Honbun' -Credential (New-Object System.Management.Automation.PSCredential 'report@hoge.com', (ConvertTo-SecureString 'PassWord' -AsPlainText -Force)) -SmtpServer hoge.com"

残念なのは日本語が送れないこと。
エンコードをUTF-8、Shift-JISで保存しても文字化けした。

ちょっとした通知にどうぞ?