Results 1 to 3 of 3

Thread: 3 email addresses in action page
      
   

  1. #1
    stv
    stv is offline Corporal
    Join Date
    Aug 2007
    Posts
    15

    Default 3 email addresses in action page

    domain name www.soscleaningsolutions.com my name servers are not updated so it does not work yet.

    1.I had always have problems with my email, so this time I want be sure I am going to get them all, so I decided to use 3 differents email addresses. Can you tell me if this is the right way to do it, do I have to change the codes?

    <?PHP
    $mailto = "sosclean@niagara.com";"soscleanin@soscleaning solu tions.com";"stevegaitan********.com";
    $email = $HTTP_POST_VARS[email];
    if ($email == "") {
    $email = $mailto;
    }
    $mailsubj = "contact web page submitted";
    $mailhead = "From: $email\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);


    Thanks in advance

    Stv

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

    Default Re: 3 email addresses in action page

    Not correct. Make the first lines as follows:

    $mailto = "sosclean@niagara.com, soscleanin@soscleaning solutions.com, stevegaitan********.com";
    $email = $HTTP_POST_VARS[email];
    if ($email == "") {
    $email = "sosclean@niagara.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!


  3. #3
    stv
    stv is offline Corporal
    Join Date
    Aug 2007
    Posts
    15

    Default Re: 3 email addresses in action page

    thanks so much you guys are awesome

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