Results 1 to 5 of 5

Thread: e-mail address of sender in a FORM (help me please)
      
   

  1. #1
    mrr
    mrr is offline Corporal
    Join Date
    Sep 2007
    Posts
    12

    Default e-mail address of sender in a FORM (help me please)

    Dear friends
    Please help me about this subject:
    1- I made a form including some fileds like NAME, TEL, E-mail , and ...
    I did as the tutorial says and it works fine.
    when one body came to that page and fills the fileds, I will receive an e-mail from the mentioned address in e-mail field.

    and my problem is exactly here.
    if that one, dosent have a valid e-mail address, it will send to me FROM AND FAKE E_MAIL ADDRESS

    example:
    he wrote in e-mail field: ddd@ddd.com
    I will recive an e-mail from ddd@ddd.com !!!
    and maybe I will lost it to spam folder !

    So I want to change to this :
    SENDER of these information will be MYSELF
    an e-mail from ME will be sent to ME , including his infos.
    I think I must edit that HTML.
    so please help me to do like this

  2. #2
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,115

    Default Re: e-mail address of sender in a FORM (help me please)

    Use this code instead of the standard one:

    <?PHP
    $mailto = "exampleemail@example.com";
    $email = $HTTP_POST_VARS['email'];
    $mailsubj = "Type your mail subject here";
    $mailhead = "From: $mailto\n";
    reset ($HTTP_POST_VARS);
    $mailbody = "Values submitted from web site form :\n";
    while (list ($key, $val) = each ($HTTP_POST_VARS))
    {
    if ($key!="submit")
    {
    $mailbody .= "$key : $val\n";
    }
    }
    mail($mailto, $mailsubj, $mailbody, $mailhead);
    ?>
    Navaldesign
    Logger Lite: Low Cost, Customizable, multifeatured Login script
    Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
    DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
    Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!


  3. #3
    mrr
    mrr is offline Corporal
    Join Date
    Sep 2007
    Posts
    12

    Question Re: e-mail address of sender in a FORM (help me please)

    Thank you SO VERY VERY MUCH FOR YOUR HELP.
    I did exactly as you said
    but no e-mail has been received after replacing the text ! :(
    and I didnt see any items in your offered script including my e-mail address.
    as I told you before, I want to the SENDER and RECEIVER be MYSELF (my e-mail address)
    but that e-mail with contain the specification of sender.
    Thank you so very much again
    best regards

  4. #4
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,115

    Default Re: e-mail address of sender in a FORM (help me please)

    The line

    $mailhead = "From: $mailto\n";

    defines the sender to be your self, as, previously, $mailto has been set to be

    $mailto ="exampleemail@example.com";

    where, of course, you need to replace "exampleemail@example.com" with your own, real email address.

    If you no more recieve emails, you have probably mistaken something.

    Please also note, that for most antispam filters, the script will work better if you use your account default email address (username@yourdomain.com)
    Navaldesign
    Logger Lite: Low Cost, Customizable, multifeatured Login script
    Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
    DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
    Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!


  5. #5
    mrr
    mrr is offline Corporal
    Join Date
    Sep 2007
    Posts
    12

    Talking Re: e-mail address of sender in a FORM (help me please)

    Thank you so VERY VERY VERY MUCH about everything.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49