如何用 Linux 命令行发电子邮件?
Linux 提供了几个可以让你通过终端发送电子邮件的命令,今天达妹为大家展示一些有趣的方法。
Linux 可以用多种方式通过命令行发送电子邮件。有一些方法十分简单,有一些相对会复杂一些,不过仍旧提供了很多有用的特性。选择哪一种方式取决于你想要什么 —— 向同事快速发送消息,还是向一批人群发带有附件的更复杂的信息。接下来看一看几种可行方案:
这是高手的答案,可是我根本没有解决问题:使用net send命令在局域网内发消息windows xp/2000中提供了一条发送网络消息的命令net send,使用该命令也可以向局域网/广域网发送一条消息,注意不能跨网段。 本文设置的gsm命令有:选择短消息业务命令、消息接收和读出命令、消息 发送和写入命令、重复上一条命令。 //其实也是一个实现了一个socketchannel,但是不对外发送消息,而是向poller发送空白消息,以提醒command队列中有命令需要处理 。
the paper hat was added to the cracker in the early 1900s. the cracker was soon adopted as a traditional festive custom and today virtually every household has at least one box of crackers to pull over christmas.。please write to me in an early reply, or send me an e-mail at lihua@jn9mb. edu. cn.。6.2.1 boarding: you should be at the boarding gate at least ninety(90) minutes prior to scheduled departure. boarding closes twenty(20) minutes prior to departure. if you arrive later than this atthe boarding gate you will not be accepted for travel.。
另一种方式是从一个文件中提取出你想要发送的文本信息:
$ mail -s "Reminder:Leaving early" myboss < reason4leaving
在以上两种情况中,你都可以通过 -s 来为邮件添加标题。
sendmail
使用 sendmail 命令可以发送一封不包含标题的快信。(用目标收件人替换 recip):
$ echo "leaving now" | sendmail recip
你可以用这条命令发送一条只有标题,没有内容的信息:
$ echo "Subject: leaving now" | sendmail recip
你也可以用 sendmail 发送一条包含一条标题行的完整信息。不过使用这个方法时,你的标题行会被添加到要发送的文件中,如下例所示:
Subject: Requested lyrics
I would just like to say that, in my opinion, longer hair and other flamboyant
affectations of appearance are nothing more ...
你也可以发送这样的文件(lyric 文件包含标题和正文):