Hi, I’m trying to send email using SendMail. I tried all the tutorials on DO community to configure SendMail. I can send email but not receive email.
These are my steps.
sudo apt-get install sendmail mailutils sendmail-bin
hosts
127.0.0.1 localhost to 127.0.0.1 localhost localhost.localdomain RabbitHost
time echo testmail | sendmail store.nikea@gmail.com
I got no errors or warnings, but I didn’t receive email.
How can I solve this ? Thank you
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
How exactly you are trying to send the email ?
To send an email using commandline try something like
mail -s “Test Email” user@domain.com < /dev/null
or
sendmail user@example.com < /tmp/email.txt