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!
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
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.