Jump to content

cristina

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

cristina's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hello: This is my first time here, I hope you can help me. I've nade a form in flash that send me the data by a php file. In the php I wrote: <?PHP $to = "info@virtualflyer.net"; $subject = "Contacto desde el formulario flash"; $message = "Nombre: " . $theName; $message .= "\nEmail: " . $theEmail; $message .= "\nEmpresa: " . $theCompany; $message .= "\nTelefono: " . $thePhone; $message .= "\n\nMensaje: " . $theMessage; $headers = "From: $theEmail"; $headers .= "\nReplay-to: $theEmail"; $sentOk = mail($to,$subject,$message,$headers); echo "sentOk=" . $sentOk; ?> I have three problems: 1- I receive the emails from the form but without the data, I mean, I can't see the variables $theName,$theEmail, etc...but I see "Contacto desde el formulario flash" 2- the sender appears always the same one "web@virtualflyer.net", that account I have not create it, and as I wrote in the script, the sender is suppossed to be what somebody writes in variable $theEmail 3- I work on a Mac, and my browser is safari, the mails I send by safari arrives to destination, but mails from explorer doesn't...do you think it has something to be with the php?. Please, help me about this, it's important form my work... Thank you, Cristina
×
×
  • 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.