A Flash Developer Resource Site

Results 1 to 7 of 7

Thread: Email problem

Threaded View

  1. #1
    Member
    Join Date
    May 2005
    Location
    England
    Posts
    44

    Email problem

    Hi i have a lfash file which acts as a feedback form. I can do this normally in html but this flash i am having trouble.

    I have my php file with

    PHP Code:
    <?php

    $to
    ="website"
    $namenew $GET['name']
    $emailnew $GET['email'];
    $feedbacknew $_GET['message']
    $subject "Feed back form"." "."$emailnew";

    $matter "Contact form from contact page" "\n\n" .
          
    "Name: " "$namenew"."\n\n" .
          
    "Email: " "$feedbacknew"."\n\n".
          
    "Message: " .  "$feedbacknew""\n\n"    

    mail("$to","$subject","$matter","From: $emailnew");
    ?> I the same directroy on my website as the flash file
    and my code for sending the mail is

    Code:
    loadVariablesNum("mailScript.php"   +   "?name=" + nam_txt.text   +   "&email=" + eml_txt.text   +   "&subject=" + sub_txt.text   +   "&message=" + msg_txt.text,0);
    So why do i not get an emial @ my site?

    Thx
    Last edited by thomas49th; 08-28-2006 at 02:17 PM.
    And when a man gets to heaven;
    To saint paul he'll tell:
    1 more solider reporting sir,
    I've served my time on hell

    June 6th 1944

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center