Hi,

If anybody want to test simple email online form, here is a sample:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Test php mail</title> </head> <body> <?php
                $to = "example@example.com" . ", "; //writing mail to the user
                $subject = "mailer";
                $message = "Hello,testing 123!" ;

                // Additional headers
                $headers .= "From: example@example.com" . "\r\n";
                $headers .= "Reply-To: example@example.com" . "\r\n";
                $headers .= "X-Mailer: PHP/" . phpversion();

                if(mail($to,$subject,$message,$headers))
                {
                    echo "mail sent Successfully";// mail sent Successfully.
                }
                else
                {
                    echo "failed";
                }
      ?> </body> </html> 

Recommended Answers

All 2 Replies

There is no form in this script. What is the purpose here?

It's just a sample.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.