cfleck
tired
i'm trying to use the php mail() function in my web page, but it doesn't seem to work.
i'm using it as,
i always get the mail sent message, but no mail gets sent. is there something i have to set up special to send email?
i'm using it as,
PHP:
if( mail( "email@email.com", "my subject", "my message") ){
echo "mail sent";
}
else{ echo "mail not sent"; }
i always get the mail sent message, but no mail gets sent. is there something i have to set up special to send email?