Hi i made this php code to send an email to my inbox but when the message its sent it redirects to a blank ugly page with a lame message, i want to redirect to another URL of my choise , can you help do that here is the code ( i think it gots something todo with the echo t the end maybe? thanks to all
Help with my HTML contact form please
20
Hi i made this php code to send an email to my inbox but when the message its sent it redirects to a blank ugly page with a lame message, i want to redirect to another URL of my choise , can you help do that
here is the code ( i think it gots something todo with the echo t the end maybe? thanks to all
<?php $nombre = $_POST['nombre']; $mail = $_POST['mail']; $empresa = $_POST['empresa']; $header = 'From: ' . $mail . " \r\n"; $header .= "X-Mailer: PHP/" . phpversion() . " \r\n"; $header .= "Mime-Version: 1.0 \r\n"; $header .= "Content-Type: text/plain"; $mensaje = "Este mensaje fue enviado por " . $nombre . ", de la empresa " . $empresa . " \r\n"; $mensaje .= "Su e-mail es: " . $mail . " \r\n"; $mensaje .= "Mensaje: " . $_POST['mensaje'] . " \r\n"; $mensaje .= "Enviado el " . date('d/m/Y', time()); $para = ''; $asunto = ''; mail($para, $asunto, utf8_decode($mensaje), $header); echo 'Message sent correctly'; ?>
here is the code ( i think it gots something todo with the echo t the end maybe? thanks to all
<?php $nombre = $_POST['nombre']; $mail = $_POST['mail']; $empresa = $_POST['empresa']; $header = 'From: ' . $mail . " \r\n"; $header .= "X-Mailer: PHP/" . phpversion() . " \r\n"; $header .= "Mime-Version: 1.0 \r\n"; $header .= "Content-Type: text/plain"; $mensaje = "Este mensaje fue enviado por " . $nombre . ", de la empresa " . $empresa . " \r\n"; $mensaje .= "Su e-mail es: " . $mail . " \r\n"; $mensaje .= "Mensaje: " . $_POST['mensaje'] . " \r\n"; $mensaje .= "Enviado el " . date('d/m/Y', time()); $para = ''; $asunto = ''; mail($para, $asunto, utf8_decode($mensaje), $header); echo 'Message sent correctly'; ?>
- teetot
- [ 1 ] Thanks
- [1] reply
- watsonovedades
- [1] reply
- PaidAllDay
- [2] replies
- watsonovedades
- watsonovedades
- [1] reply
- Valdor Kiebach
- [2] replies
- watsonovedades
- watsonovedades
- [1] reply
- webwizdevelop
- [1] reply
- watsonovedades
- Blakos
- [1] reply
- watsonovedades
- David Beroff
- [ 2 ] Thanks
Next Topics on Trending Feed
-
20