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()?