Tags:
php
Jeg prøver at oprette en mailform men får flg. fejlbesked :
Warning: mail() [function.mail]: SMTP server response: 550 5.7.1 Unable to relay for kristianmorup@hotmail.com in C:\\Inetpub\\wwwroot\\xxx-xxx\\inddata\\mailform.php on line 15
Warning: main(error.html) [function.main]: failed to create stream: No such file or directory in C:\\Inetpub\\wwwroot\\xxx-xxx\\inddata\\mailform.php on line 22
Warning: main() [function.main]: Failed opening 'error.html' for inclusion (include_path='.;c:\\php4\\pear') in C:\\Inetpub\\wwwroot\\xxx-xxx\\inddata\\mailform.php on line 22
Min PHP fil ser således ud :
<?
$from = 'info@xxx-xxx.dk';
$to = 'kristianmorup@hotmail.com';
$subject = "Contact from site on " . date("m/d/Y");
// Leave the rest of the stuff below //
$mailheader = "From: $from\\r\\n";
$mailheader .= "Reply-To: $from\\r\\n";
if (isset($HTTP_POST_VARS)){
$mailbody = '';
while (list($key, $value) = each($HTTP_POST_VARS))
{
$mailbody .= $key . ' = ' . $value . "\\r\\n";
}
}
$mailforms = mail($to, $subject, $mailbody, $mailheader);
if($mailforms)
{
include("done.html");
}
else
{
include("error.html");
}
?>
og htlm filen sådan :
<form name="contact" method="post" action="mailform.php">
<table border="0" align="center" cellpadding="2" width="450">
<tr>
<td width="120" valign="top">Your Name:</td>
<td><input type="text" name="name"></td>
</tr>
<tr>
<td valign="top">Your Email:</td>
<td><input type="text" name="email"></td>
</tr>
<tr>
<td valign="top">Comments:</td>
<td><textarea name="comments" rows="7" cols="30"> </textarea></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="submit" value="Send!"></td>
</tr>
</table>
</form>
kan nogen hjælpe
Warning: mail() [function.mail]: SMTP server response: 550 5.7.1 Unable to relay for kristianmorup@hotmail.com in C:\\Inetpub\\wwwroot\\xxx-xxx\\inddata\\mailform.php on line 15
Der er en fejl i din opsætning af php. Tjek om der er en smtp-server i linjen "SMTP = ????" i php.ini (fx smtp.tele.dk eller vip.cybercity.dk)
Warning: main(error.html) [function.main]: failed to create stream: No such file or directory in C:\\Inetpub\\wwwroot\\xxx-xxx\\inddata\\mailform.php on line 22
Warning: main() [function.main]: Failed opening 'error.html' for inclusion (include_path='.;c:\\php4\\pear') in C:\\Inetpub\\wwwroot\\xxx-xxx\\inddata\\mailform.php on line 22
filen error.html findes ikke