Jump to content

Search the Community

Showing results for tags 'contact form reply-to'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome to PHP Freaks
    • Announcements
    • Introductions
  • PHP Coding
    • PHP Coding Help
    • Regex Help
    • Third Party Scripts
    • FAQ/Code Snippet Repository
  • SQL / Database
    • MySQL Help
    • PostgreSQL
    • Microsoft SQL - MSSQL
    • Other RDBMS and SQL dialects
  • Client Side
    • HTML Help
    • CSS Help
    • Javascript Help
    • Other
  • Applications and Frameworks
    • Applications
    • Frameworks
    • Other Libraries
  • Web Server Administration
    • PHP Installation and Configuration
    • Linux
    • Apache HTTP Server
    • Microsoft IIS
    • Other Web Server Software
  • Other
    • Application Design
    • Other Programming Languages
    • Editor Help (PhpStorm, VS Code, etc)
    • Website Critique
    • Beta Test Your Stuff!
  • Freelance, Contracts, Employment, etc.
    • Services Offered
    • Job Offerings
  • General Discussion
    • PHPFreaks.com Website Feedback
    • Miscellaneous

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests


Age


Donation Link

Found 1 result

  1. Hi there! I'm new to the forum and I have little knowledge of PHP but I managed to make a contact form. I've looked at the other threads about PHP Contact Form and tried different options but nothing seems to work, so here is my code. I can't make the Reply-To to have the sumbitter email. In reply-to I get: $email@hn02.wiroos.com (wiroos is the hosting company name), everything else is working fine. Any ideas? Thanks! The form: <form action="procesar_form.php" method="post" name="formulario" id="formulario" onsubmit='return validarFormulario()'> <label for="nombre">Nombre </label> <input type="text" name="nombre" id="nombre" size="60"/> <label for="apellido">Apellido </label> <input type="text" name="apellido" id="apellido" size="60"/> <label for="email">Email </label> <input type="text" name="email" id="email" size="60"/> <label for="comentarios">Comentarios</label> <textarea name="comentarios" id="comentarios" cols="44" rows="10"></textarea> <input type="button" name="enviar" id="enviar" value="Enviar" onclick="validarFormulario()" /></textarea> </form> PHP code: $email = $_POST['email']; $to = 'elunicotomas@gmail.com'; $subject = 'Contacto PowerFitness'; $message = 'Nombre: ' . $_POST['nombre'] . "\n" . 'Apellido: ' . $_POST['apellido'] . "\n" . 'Email: ' . $_POST['email'] . "\n" . 'Comentarios: ' . $_POST['comentarios']; $headers = 'From: $email' . "\n" . 'Reply-to: $email' . "\n" . 'X-Mailer: PHP/' . phpversion(); mail($to, $subject, $message, $headers); header("Location: ../../index.html"); And I sent an email to my address (from the form) so you can see the email source and here it is: > Delivered-To: elunicotomas@gmail.com Received: by 10.60.132.7 with > SMTP id oq7csp23527oeb; > Sun, 24 Mar 2013 17:57:27 -0700 (PDT) X-Received: by 10.236.160.195 with SMTP id u43mr5762986yhk.104.1364173047442; > Sun, 24 Mar 2013 17:57:27 -0700 (PDT) Return-Path: <nobody@hn02.wiroos.com> Received: from hn02.wiroos.com > (hn02.wiroos.com. [199.115.114.195]) > by mx.google.com with ESMTPS id h65si7425664yhk.272.2013.03.24.17.57.27 > (version=TLSv1 cipher=RC4-SHA bits=128/128); > Sun, 24 Mar 2013 17:57:27 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of nobody@hn02.wiroos.com > designates 199.115.114.195 as permitted sender) > client-ip=199.115.114.195; Authentication-Results: mx.google.com; > spf=pass (google.com: best guess record for domain of nobody@hn02.wiroos.com designates 199.115.114.195 as permitted sender) > smtp.mail=nobody@hn02.wiroos.com Received: from nobody by > hn02.wiroos.com with local (Exim 4.80) (envelope-from > <nobody@hn02.wiroos.com>) id 1UJvj2-0002cx-SK for > elunicotomas@gmail.com; Sun, 24 Mar 2013 21:57:25 -0300 To: > elunicotomas@gmail.com Subject: Contacto PowerFitness X-PHP-Script: > powerfitness.com.ar/contacto/procesar_form.php for 200.70.31.20 From: > Contacto PowerFitness pedidos@powerfitness.com.ar Reply-To: > $email@hn02.wiroos.com X-Mailer: PHP/5.3.21 Message-Id: > <E1UJvj2-0002cx-SK@hn02.wiroos.com> Date: Sun, 24 Mar 2013 21:57:24 > -0300 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - > hn02.wiroos.com X-AntiAbuse: Original Domain - gmail.com X-AntiAbuse: > Originator/Caller UID/GID - [99 32007] / [47 12] X-AntiAbuse: Sender > Address Domain - hn02.wiroos.com X-Get-Message-Sender-Via: > hn02.wiroos.com: uid via acl_c_vhost_owner from authenticated_id: > nobody from /only user confirmed/virtual account not confirmed > X-Source: X-Source-Args: /usr/local/apache/bin/httpd -k start -DSSL > X-Source-Dir: powerfitness.com.ar:/public_html/contacto > > Nombre: Tomas Apellido: Perez Ponisio Email: elunicotomas@gmail.com > Comentarios: 132465
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.