Report this

What is the reason for this report?

How do I make emails send from the correct address?

Posted on August 2, 2014

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.

Try adding the following line to /etc/hosts:

127.0.0.1 gifavs.com

then, set your droplet’s hostname to a FQDN (such as gifavs.com):

echo gifavs.com | sudo tee /etc/hostname
sudo hostname -F /etc/hostname

finally, restart sendmail:

sudo service sendmail restart

Does that fix it?

may be you are using exim4 on a debian system. after changing /etc/mailname restart exim4 with:

sudo service exim4 restart

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.