Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End help with php form email tutorial from css-tricks Re: help with php form email tutorial from css-tricks

#92349
standuncan
Member

I think you can use something like this:



if (mail($to, $subject, $message, $headers)) {
echo '';
} else {
echo '

There was a problem sending the email.

';
}