oh, ok!
First of your going to need the following.
Xampp (not Xampplite) - You can get this from apachefriends.org
install xampp and open up php.ini in your text editor
C:\xampp\php\php.ini
then press CTRL + F to search the document.
and type this in "[mail function]"
you should see something like this
[mail function]
; For Win32 only.
SMTP = localhost
smtp_port = 25
; For Win32 only.
;sendmail_from = me@example.com
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
;sendmail_path = "C:\xampp\sendmail\sendmail.exe -t"
; 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 =
replace it with this
[mail function]
; For Win32 only.
SMTP = localhost
smtp_port = 25
; For Win32 only.
sendmail_from = YOUREMAIL@DOMAIN.COM
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
sendmail_path = "C:\xampp\sendmail\sendmail.exe -t"
; 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 =
that should work!
don't forget to change "YOUREMAIL@DOMAIN.COM" to your email address!
EDIT: I have not tested this