PHP වැඩ්ඩන්ගෙන් පොඩ් help 1ක් ඕන
ඔය පහල තියෙන code 1 න් yahoo, gmail වලට mail 1 යන්නෙ නැ, එත් webmail 1 කට mail 1 යනව. දන්න කෙනෙක් කියනවද ඇයි එහෙම වෙන්නෙ කියල.
ඔය පහල තියෙන code 1 න් yahoo, gmail වලට mail 1 යන්නෙ නැ, එත් webmail 1 කට mail 1 යනව. දන්න කෙනෙක් කියනවද ඇයි එහෙම වෙන්නෙ කියල.
HTML:
$to = $_POST['email'];
$msg = 'to continue your registratin ';
$headers .= 'MIME-Version: 1.0'.PHP_EOL . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'From: [email protected]';
$send;
if($_POST['email']!='') {
$send=mail($to,'hi everyone' ,$msg,$headers);
}else {
$send=false;
}
if($send) {
echo '<p style="color:#0F6; font-family:Tahoma, Geneva, sans-serif;font-size:14px;">Message Send
Success</p>';
}else {
echo '<p style="color:#F00; font-family:Tahoma, Geneva, sans-serif;font-size:14px;">Message Send
Unsuccess</p>';
}


