How to send an email from one Gmail account to another one using a batch file or script?

前端 未结 5 1860
北海茫月
北海茫月 2020-12-18 17:25

I need a tiny Windows script to send a 1 line email to Gmail accounts. I have tried many utilities that claim to do this such as BLAT, but none work. The script will be exec

5条回答
  •  Happy的楠姐
    2020-12-18 18:02

    In Linux (I'm not sure what environment you're on) you can use mail:

    some_command| mail foo@gmail.com bar@gmail.com -s "subject"
    

提交回复
热议问题