Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am running a VPS for my hosting. The php mail function does not work so I have installed sendmail using SSH. I need quite newbie instructions for setting up sendmail so the php mail function will work.

Edit: I am fairly sure there was no SMTP server installed on my VPS. Thus I need sendmail to enable this. Can you suggest any checks to see if this is not the problem?

I am not getting any error messages, I just don't get any mail delivered when using the php mail function.

I have edited my php.ini as such: sendmail_path = "/usr/sbin/sendmail -t -i"

EDIT2: Maybe I don't need mail() - I am using WordPress and its email functionality is not working. I want whatever WordPress uses to work.

EDIT3: It seems Wordpress does use mail() so that is what I want to use. Here's a roundup of what I've done:

  • Installed sendmail over SSH
  • Edited php.ini to have the correct directory of sendmail
  • verified the above with a phpinfo page
  • run a test php page with a mail() function in it.

No email is being received. My VPS does not yet have a domain name pointing at it - I access it via its IP address at the moment. Would this affect the operation of mail()?

share|improve this question
1  
What have you tried? – ajtrichards Nov 26 '12 at 21:38
¿Why the php mail function does not work? ¿Why SSH? ¿Why do you think Sendmail will resolve your problem? I think Sendmail will give the same errors until you find what's going on. – faa Nov 26 '12 at 21:46

closed as not a real question by j08691, Madara Uchiha, Jocelyn, bensiu, Chris Gerken Nov 27 '12 at 3:07

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Do not use mail(). It is limited and sucks if you are not skilled enough. You can easily become spam source if you do not take specified precautions and newbies barely got idea they shoud. Use something more sophisticated like PHP Mailer and send via SMTP, via any server you use to send your daily mails. As normal user, with authentication. Save yourself some time and hassle...

share|improve this answer
Oh OK - I am in fact using Wordpress which I assumed used mail(). I actually just need whatever wordpress uses to send email (e.g. password recovery email, reg email etc) to work. – harryg Nov 26 '12 at 23:22

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