InterviewSolution
Saved Bookmarks
| 1. |
How To Send A Test Mail From Command Line ? |
|
Answer» USE the below command to send a test mail from POSTFIX itself : # ECHO “Test mail from postfix” | mail -s “Plz ignore” INFO@something.com Use the below command to send a test mail from postfix itself : # echo “Test mail from postfix” | mail -s “Plz ignore” info@something.com |
|