up vote 1 down vote favorite
share [g+] share [fb]

I host my site with GoDaddy , and I use the PHP mail() function at the moment to send form mails from my site. GoDaddy has a 1000 SMTP relay limit per day for form mail stuff, but they swear that with my PHP script that I should not be touching it.

  1. Since mail() doesn't take SMTP info, does it just automatically use GoDaddy's (or whatever hosting you may be on)?

  2. If my site is going to be expecting more than 1000 emails sent out a day (separate instances, not in a loop), should I be using a different method, or is mail() the right choice?

link|improve this question

1  
Is this PHP on Linux or Windows? – Kev Jun 10 '09 at 19:32
it is shared hosting on Linux:) – johnnietheblack Jun 10 '09 at 19:52
feedback

6 Answers

up vote 5 down vote accepted

Php uses by default, the local mail-server. However you can specify this in your php.ini configuration file.

If you expect to send more email than that, you might want to look into finding a different server to mail from, or alternative hosting

link|improve this answer
can I just specify ANY server? for example...can I send through gmail's server, but retain my domain name in my email? that probably seems like a dumb quesiton, but im vague in this area – johnnietheblack Jun 10 '09 at 19:31
@johnnietheblack: If you can access the php.ini file (i.e. PHP's settings), you can set the SMTP server to whatever you want. (this is definitely not the case on any sort of shared hosting) – Piskvor Jun 10 '09 at 19:51
feedback

If you need to use an external email server that requires authentication, you will not be able to use the PHP mail() function.

I recommend using: http://pear.php.net/package/Mail

link|improve this answer
so does that mean if i host at GoDaddy that I can't point my mail() script to a different authenticated SMTP on a hosting services that doesn't care about how many i send without using PEAR? thanks for your patience:) – johnnietheblack Jun 10 '09 at 19:30
1  
The mail() function is very basic and doesn't support sending a username/password key pairing to SMTP hosts that require authentication. You have to write a bunch of custom code to get the mail() function to work with it, which is why I suggested a package =P Hope that helps. – Chris S Jun 10 '09 at 19:31
feedback

If you need to use a third party mail service I'd recommend dropping the use of mail() and replace with the SwiftMailer library. It's a feature rich component (supports authentication, attachments, encryption etc) we've used it in a few places. It's also free and open source.

link|improve this answer
ill check that out, thanks:) does it work well for bulk mailing? better than PEAR? – johnnietheblack Jun 10 '09 at 19:53
Couldn't make any comparisons to the PEAR mail package unfortunately. Seems to work fine with bulk mailers, got a couple of customers using it. – Kev Jun 11 '09 at 3:36
feedback

On a *nix machine, the PHP mail() function does not support SMTP, but instead uses the sendmail() or other configured mail script on the server. This script can send through an SMTP, but this isn't the easiest way within PHP (unless you already have the script). To use SMTP, I would recommend PHPMailer. I have been using it for a few years now and have been impressed. It supports SMTP along with many other protocols and also has other helpful functionality, such as adding a text only body for an HTML email and creating the proper email headers. You can also extend the class to set defaults, such as the SMTP server and from email/name so you don't have to set these every time you want to send an email. It also does very nice error reporting and debugging.

I would also recommend this class for sending out 1000s of emails. I recently did >5000 in one day with it and had no problems.

link|improve this answer
feedback

mail() does use the setting as defined in the php.ini. Windows servers require an actual smtp server while *nix servers will use whatever mta is installed on the server (if any).

As others have mentioned, if you do want to use an alternate smtp server, use an alternative library like SwiftMailer. Also you'd want to make sure the smtp server is fast. I have seen slowdowns when using an smtp server like gmail.

GoDaddy uses a Smart SMTP Relay, even on for dedicated servers hosted with GoDaddy. The limit is based on how many emails are going through the Smart relay.

If you have a valid reason for needing to send more emails and you can verify that your site isn't spamming and that all of the emails are opt-in, support will increase the limit for you if you give them an estimate of how many emails you need to send out.

link|improve this answer
feedback

I've been using the open source project phpmailer for about seven years-- it is terrific! You could use it to connect to an offsite SMTP server.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.