我試圖從我的網站發送電子郵件,我輸入了正確的名稱和電子郵件,但沒有發送。 可以幫我嗎?通過php發送郵件,爲什麼不工作?
URL正在被解析,而且html很好地與php通信。 我把這個線
echo $_POST["userName"].' y ';
//(to know if the name is getting to the php)
echo $_POST["userEmail"];
//(to know if the email is getting to the php)
,它的正常工作......也許錯誤是在郵件線什麼的。
這是我的PHP代碼
elseif ($page_name=='contact-post.html') {
if($_POST["userName"]!='' && $_POST["userEmail"]!=''){
echo $_POST["userName"].' y ';
//(to know if the name is getting to the php
echo $_POST["userEmail"];
//(to know if the email is getting to the php
$nombre = $_POST["userName"];
$correo = $_POST["userEmail"];
$asunto = "Mensaje de ".$nombre;
$mensaje = $_POST["userMsg"];
$correoMarsur = "[email protected]";
if(mail($correoMarsur,$asunto,$mensaje,$correo)){
echo ("<SCRIPT LANGUAGE='JavaScript'>
window.alert('Mensaje enviado')
window.location.href='http://page.cl';
</SCRIPT>");
}
else{
echo ("<SCRIPT LANGUAGE='JavaScript'>
window.alert('Imposible enviar su mensaje')
window.location.href='http://page.cl';
</SCRIPT>");
}
}
else{
echo ("<SCRIPT LANGUAGE='JavaScript'>
window.alert('Ingrese Nombre y Correo')
window.location.href='http://page.cl';
</SCRIPT>");
}
}
,這是我的HTML代碼
<div class="form">
<!--<form method="post" action="/index.php/contact-post.html"> -->
<form method="post" action="../index.php/contact-post.html">
<input name="userName" id="userName" type="text" class="textbox" placeholder="Nombre*" />
<input name="userEmail" id="userEmail" type="text" class="textbox" placeholder="Email*" />
<div class="clear"> </div>
<div>
<textarea name="userMsg" id="userMsg" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Mensaje* ';}">Mensaje*</textarea>
</div>
<div class="submit">
<input type="submit" value="Enviar " />
</div>
</form>
</div>
和郵件布爾變量返回false,我該如何解決呢?
你檢查error.log中? –
你怎麼知道這不起作用?一個錯誤,或者你只是你沒有收到任何郵件?也許你需要檢查你的郵件服務器配置,你在使用什麼操作系統? – HaSuKrOnOs
@HaSuKrOnOs我使用Ubuntu,功能郵件返回''FALSE'' – cheloncio