Hello, I am having trouble installing a script.
define("CONF_MAIL_FROM", "CHANGE THIS");
define("CONF_MAIL_SMTP", "CHANGE THIS");
It asks for that information, how do I find out what to place in those blanks.
<?php
$to = 'nobody@example.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: webmaster@example.com' . "\r\n" .
'Reply-To: webmaster@example.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
?>