Category: Email
A well known problem when sending e-mails through webservers is the wrong From: address that by default points to the server's name. This can cause some problems: mails never arrive, replies are sent to a non active or not actively checked mailbox and bounces may arrive at the hosting company or worse disappear in the bitbucket.
In PHP it is relatively easy to fix:
<?php mail('nobody@yourdomain.com', 'subject', 'message', null, '-f from@yourdomain.com'); ?>
The last parameter ' -f ' allows you to specify the From: address for the sendmail function.
Were not all your questions answered?
Don't worry, we will be happy to help you via a support request!