I'm running my own LAMP server locally.
Something i need to setup?
Should it be able to send email using php-mail, without havin to configure smtp.
I'm running my own LAMP server locally.
Something i need to setup?
Should it be able to send email using php-mail, without havin to configure smtp.
Check your phpinfo() information for STMP and the port. Do a test.php file and try to execute this.
mail('[email protected]', 'My Subject', 'Hello World');
That thread will help you out.
Drupal basically patches into the php mail function, so as with that you either need a mail server installed locally with your lamp setup, or to point apache towards an external or smtp server in your php.ini file.
Ah fixed it, well i didn't-one of our developers did.
Apparently Drupal only uses 'Send Mail' so you have to have it installed, wont use php-mail.