I found it there too but I have another problem. I want to be able to display the value of a variable in the message variable. How do I do it?
Here's my code:
$to = "test@siuadministration.com" . ", " ; // note the comma
$to .= "test@siuadministration.com";
/* subject */
$subject = "Confirmation of abstract submission, SIU 2004";
/* message */
$message = '
<html>
<head>
<title>Confirmation of abstract submission, SIU 2004</title>
</head>
<body>
COLOR=red]I WANT TO INSERT THE VALUE OF $Introduction which contains HTML coding[/COLOR]
</body>
</html>
';
/* To send HTML mail, you can set the Content-type header. */
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
/* and now mail it */
mail($to, $subject, $message, $headers);[
How do I do this? I really appreciate all your help Lord, you've been quite helpful!!!!