• 05-04-2020, 02:22:00
    #10
    contact_me.php içeriği aşağıdaki gibi olmalı. Tema dosyalarını tekrar kontrol edin.
    <?php// Check for empty fieldsif (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          = strip_tags(htmlspecialchars($_POST['name']));$email_address = strip_tags(htmlspecialchars($_POST['email']));$message       = strip_tags(htmlspecialchars($_POST['message']));// Create the email and send the message$to            = 'test@YOURDOMAIN.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.nn" . "Here are the details:nnName: $namennEmail: $email_addressnnPhone: $phonennMessage:n$message";$headers       = "From: noreply@yourdomain.comn"; // 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;?>
  • 05-04-2020, 03:12:48
    #11
    Webbilgim adlı üyeden alıntı: mesajı görüntüle
    contact_me.php içeriği aşağıdaki gibi olmalı. Tema dosyalarını tekrar kontrol edin.
    <?php// Check for empty fieldsif (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 = strip_tags(htmlspecialchars($_POST['name']));$email_address = strip_tags(htmlspecialchars($_POST['email']));$message = strip_tags(htmlspecialchars($_POST['message']));// Create the email and send the message$to = 'test@YOURDOMAIN.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.nn" . "Here are the details:nnName: $namennEmail: $email_addressnnPhone: $phonennMessage:n$message";$headers = "From: noreply@yourdomain.comn"; // 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;?>

    dosya buraya eklediğim gibi yourdomain.com burasımı acaba
  • 05-04-2020, 03:29:26
    #12
    İndirdiğiniz dosyanın bağlantı adresi nedir? Dosyaları görüp cevap yazayım.