To use the most commonly used mail function in Ubuntu, you need to install mailutils. The installation command is sudo apt-Get install mailutils. <br/> to use the function with attachments, you also need to install sharutils, installation command: sudo apt-Get install sharutils; YUM install sharutils <br/> RUN sendmail service:/etc/init in RedHat. d/sendmail start <br/>
Frequently Used email sending methods are as follows:
1. How to Write a general Email:
Mail flynewton @ gmail edit CC object, mail subject, after the mail body, press Ctrl-D to end
2. Fast sending method:
Echo mail body | mail-s mail subject flynewton@gmail.com
3. Send the email with the file content as the body:
Mail-s test flynewton@gmail.com <test.txt
4. send an email with an attachment:
UUEncode attachment name attachment display name | mail-s mail subject sending Address
For example:
UUEncode test.txt | mail-s test flynewton@gmail.com