[mail function]
; For Win32 only.
SMTP = localhost
smtp_port = 25
; For Win32 only.
sendmail_from = me@mydomain.prg
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
;sendmail_path =
; Force the addition of the specified parameters to be passed as extra parameters
; to the sendmail binary. These parameters will always replace the value of
; the 5th parameter to mail(), even in safe mode.
;mail.force_extra_parameters =
And I tried making a email script and then tried a simple email script:
mail('me@mydomain', 'The Subject', 'The Message');
Its giving me the following server error:
500 - Internal server error.
If i try:
@mail('me@mydomain', 'The Subject', 'The Message');
The correct page is displayed but the email is still not being sent.