reakt Posted March 31, 2011 Share Posted March 31, 2011 Hi guys, I'm sending mail from php running on a cheap webhost with the following: $to = '[email protected]'; $header = 'MIME-Version: 1.0' . "\r\n"; $header .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $header .= "From: Name <[email protected]>" . "\r\n"; $subject = "Interest registered"; $message = "<!DOCTYPE HTML.. a bunch of html"; mail($to, $subject, $message, $header); As you can see I've set "from" in the headers. When I receive the email however, it says from: [email protected] on behalf of Name [[email protected]] I need to get rid of the on behalf bit as it looks completely unprofessional. I just want it to say from: Name [[email protected]] Obviously this is probably something to do with the setup of the server, some of which I have no control over. I have access to another mail server which I can use to send email, so I put this at the start of my code: ini_set('SMTP', 'mail.myotherserver.com.au'); echo ini_get('SMTP'); Which returns mail.myotherserver.com.au however, when I use the mail function, it still comes from [email protected] on behalf of Name [[email protected]] Is there something I'm missing, is the mail function not tied to the SMTP value? Thanks Quote Link to comment https://forums.phpfreaks.com/topic/232235-send-mail-from-php-override-phpini/ Share on other sites More sharing options...
Nudd Posted March 31, 2011 Share Posted March 31, 2011 It is usually tied to that value, but I expect if there's an error it will fall back on the default. Does your server provider allow other smtp servers to be run through the default port? I know many ISPs in this area block access to any other SMTP server on port 25, but any other port is nifty with them. Have you tried a different port using: ini_set("smtp_port","26"); //Or some other port number Quote Link to comment https://forums.phpfreaks.com/topic/232235-send-mail-from-php-override-phpini/#findComment-1194738 Share on other sites More sharing options...
reakt Posted March 31, 2011 Author Share Posted March 31, 2011 Hi Nudd, thanks for the reply. I tried setting the SMTP port to 26, still no go. It did get me thinking though and I believe the server requires authentication before it will send. How would I use php to authenticate before sending? Thanks Quote Link to comment https://forums.phpfreaks.com/topic/232235-send-mail-from-php-override-phpini/#findComment-1194752 Share on other sites More sharing options...
reakt Posted March 31, 2011 Author Share Posted March 31, 2011 I've found that for SMTP authentication you have to use PEAR Mail. I get the following error: Failed to connect to mail.myserver.com.au:25 [sMTP: Failed to connect socket: Connection refused (code: -1, response: )] Port 26 times out and gives me this: Failed to connect to mail.myserver.com.au:26 [sMTP: Failed to connect socket: Connection timed out (code: -1, response: )] Quote Link to comment https://forums.phpfreaks.com/topic/232235-send-mail-from-php-override-phpini/#findComment-1194760 Share on other sites More sharing options...
reakt Posted March 31, 2011 Author Share Posted March 31, 2011 OK I've gotten into the mail server configuration a bit and it looks like it's been setup to only allow mail to be sent from IPs on the local network. I can add an exception, but how would I find out what IP my cheap domain host is sending from? Quote Link to comment https://forums.phpfreaks.com/topic/232235-send-mail-from-php-override-phpini/#findComment-1194768 Share on other sites More sharing options...
Nudd Posted March 31, 2011 Share Posted March 31, 2011 Don't most (cheap) hosts just use the same server (or at least ip address) as their web server? You could just ping that. Alternatively, ping the smtp server that's provided by your host, chances are it's one of those. Quote Link to comment https://forums.phpfreaks.com/topic/232235-send-mail-from-php-override-phpini/#findComment-1195035 Share on other sites More sharing options...
betterphp Posted March 31, 2011 Share Posted March 31, 2011 its probably the SMTP server of that cheap host that is modifying the header though, so connecting to that won't really help :s Just get proper hosting :-\ Quote Link to comment https://forums.phpfreaks.com/topic/232235-send-mail-from-php-override-phpini/#findComment-1195062 Share on other sites More sharing options...
MatthewJ Posted March 31, 2011 Share Posted March 31, 2011 I had the same problem on a host a year or so ago... if I recall, I got it fixed by adding the php-version header to the mail headers. Almost like if it didn't know what php version was sending the mail, it defaulted. Example from the PHP manual <?php $to = '[email protected]'; $subject = 'the subject'; $message = 'hello'; $headers = 'From: [email protected]' . "\r\n" . 'Reply-To: [email protected]' . "\r\n" . 'X-Mailer: PHP/' . phpversion(); mail($to, $subject, $message, $headers); ?> Maybe that will help? Quote Link to comment https://forums.phpfreaks.com/topic/232235-send-mail-from-php-override-phpini/#findComment-1195065 Share on other sites More sharing options...
MatthewJ Posted March 31, 2011 Share Posted March 31, 2011 Also, I would try the From: header as the email address only and remove it from the < > like the manual example. Quote Link to comment https://forums.phpfreaks.com/topic/232235-send-mail-from-php-override-phpini/#findComment-1195066 Share on other sites More sharing options...
kenrbnsn Posted March 31, 2011 Share Posted March 31, 2011 You can also try using the optional fifth parameter to the mail() function: <?php $to = '[email protected]'; $header = 'MIME-Version: 1.0' . "\r\n"; $header .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $header .= "From: Name <[email protected]>" . "\r\n"; $subject = "Interest registered"; $message = "<!DOCTYPE HTML.. a bunch of html"; $fifthp = '-f [email protected]'; mail($to, $subject, $message, $header,$fifthp); ?> Ken Quote Link to comment https://forums.phpfreaks.com/topic/232235-send-mail-from-php-override-phpini/#findComment-1195079 Share on other sites More sharing options...
reakt Posted April 4, 2011 Author Share Posted April 4, 2011 Thanks for all the responses guys. Unfortunately none of them worked. However I finally got a response from the helpdesk of my cheap host and they told me to send the email via SMTP (through localhost, not my other SMTP server) and it actually works! Problem solved Quote Link to comment https://forums.phpfreaks.com/topic/232235-send-mail-from-php-override-phpini/#findComment-1196442 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.