Currently, emails sent with sendmail (using CodeIgniter’s email class) are being sent from noreply@d1stkfactory
. Not only is this a weird looking email address—it causes the emails to end up in spam every time.
I set the from address in the code but it still sends from noreply@d1stkfactory
.
I found this question: https://www.digitalocean.com/community/questions/debian-configuring-sendmail-and-php-mail-cannot-change-from-address
The answer on it says to change the default hostname in /etc/mailname
. It was indeed set to “d1stkfactory” so I changed it to the correct domain, gifavs.com. I restarted sendmail and it still sends from noreply@d1stkfactory
.
Does anybody know what could be causing this?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
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.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
may be you are using exim4 on a debian system. after changing /etc/mailname restart exim4 with:
Try adding the following line to
/etc/hosts
:then, set your droplet’s hostname to a FQDN (such as
gifavs.com
):finally, restart sendmail:
Does that fix it?