Hello,
I just installed sendmail on my droplets for WordPress. However, the emails are being sent as wordpress@[ip of the droplet].
I’m sure it’s something in the configuration file to change, but I couldn’t find what. Any idea ?
Thanks a lot !
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.
Make sure your /etc/hosts
file is set up correctly.
Change the line 127.0.0.1 localhost
to 127.0.0.1 localhost localhost.localdomain your_host
.
The command hostname
will return your hostname. Now the email address should look like this: user@host
Don’t forget to restart sendmail.
Bump ?