Thank you for that, I can now overwrite variables 🙂 Only it's still not working 🙁
Here's my test script I'm using:
ini_set("SMTP","smtp.mydomain.com");
ini_set("sendmail_from","me@mydomain.com");
mail("me@hotmail.com", "test", "testing") or die ("could not send email");
It dies and shows "could not send email". I've checked the PHP.ini file by doing
phpinfo();
and all the variables listed above have been overwritten locally. Do you know what else could be causing it to fail?