Hazır bir template aldım. İçinde form mail var. Kodları da aşağıda. Ama çalışması için, doruk net denen dolandırıcı firma kodları değiştirmem gerektiğini söyledi. ve bir alt satırdaki kodları kendi kodlarına uyarla dedi. Bunu nasıl yapabilirim? Şimdiden teşekkürler.
Doruk.net in oluşturduğu form mail hesabı Alan Adı: xxxxxxxx.com Form Mail e-posta hesabı : info@form.xxxxxxxx.com Form Mail e-posta hesabı şifresi : xxxxxx Smtp Host (Sunucu) : form01.doruk.net.tr
Template in hazır kodları <?php // Check for empty fields if(empty($_POST['name']) || empty($_POST['email']) || empty($_POST['phone']) || empty($_POST['message']) || !filter_var($_POST['email'],FILTER_VALIDATE_EMAIL)) { echo "No arguments Provided!"; return false; }
// Create the email and send the message $to = 'info@xxxxxxxx.com'; // Add your email address inbetween the '' replacing yourname@yourdomain.com - This is where the form will send a message to. $email_subject = "Website Contact Form: $name"; $email_body = "You have received a new message from your website contact form.\n\n"."Here are the details:\n\nName: $name\n\nEmail: $email_address\n\nPhone: $phone\n\nMessage:\n$message"; $headers = "From: noreply@xxxxxxxx.com \n"; // This is the email address the generated message will be from. We recommend using something like noreply@yourdomain.com. $headers .= "Reply-To: $email_address"; mail($to,$email_subject,$email_body,$headers); return true; ?>
Doruk.net in oluşturduğu form mail hesabı
Alan Adı: xxxxxxxx.com
Form Mail e-posta hesabı : info@form.xxxxxxxx.com
Form Mail e-posta hesabı şifresi : xxxxxx
Smtp Host (Sunucu) : form01.doruk.net.tr
Template in hazır kodları
<?php
// Check for empty fields
if(empty($_POST['name']) ||
empty($_POST['email']) ||
empty($_POST['phone']) ||
empty($_POST['message']) ||
!filter_var($_POST['email'],FILTER_VALIDATE_EMAIL))
{
echo "No arguments Provided!";
return false;
}
$name = $_POST['name'];
$email_address = $_POST['email'];
$phone = $_POST['phone'];
$message = $_POST['message'];
// Create the email and send the message
$to = 'info@xxxxxxxx.com'; // Add your email address inbetween the '' replacing yourname@yourdomain.com - This is where the form will send a message to.
$email_subject = "Website Contact Form: $name";
$email_body = "You have received a new message from your website contact form.\n\n"."Here are the details:\n\nName: $name\n\nEmail: $email_address\n\nPhone: $phone\n\nMessage:\n$message";
$headers = "From: noreply@xxxxxxxx.com \n"; // This is the email address the generated message will be from. We recommend using something like noreply@yourdomain.com.
$headers .= "Reply-To: $email_address";
mail($to,$email_subject,$email_body,$headers);
return true;
?>