Sending Mail (newbie)

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Greetings All

I am using the following script to send mail via PHP. The script processes and
send the mail but the message is never displayed in the received email. Any
pointers will be much appreciated. Thank you.

<?php
		        // Handle POST method.
        		if ($_POST)
        		{						   						   
				$name = $_POST['name'];
	            $phone = $_POST['phone'];
    	        $comments = $_POST['comments'];
				
				$to = 'schalk@xxxxxxxxxxx';
				$subject = "Contact from OxfordPrice.com";
				$headers = "MIME-Version: 1.0\r\n".
						   "Content-type: text/html; charset=iso-8859-1\r\n".
						   "From: ".$name."\r\n".						   
						   "Date: ".date("r")."\r\n";

        	   // Compose message:
            	$message = "
				<html>
				<body>
				<h1>Message From: " . $name . 
				"</h1>
				</body>
				</html>
				";

              // Send message
            	mail($to, $subject, $message, $headers);

              // Thank the generous user
            	echo "<div id=\"message-response\"><h1>Thank You!</h1></div>\n";
        	}

--
Open WebMail Project (http://openwebmail.org)

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux