Results 1 to 7 of 7

Thread: Email links
      
   

  1. #1
    bubsduck is offline Corporal
    Join Date
    Apr 2007
    Posts
    10

    Default Email links

    I'm wanting to add a spot in my site that will allow people to ask question, make comments etc. and then click a button and this request will go directly to my email account. How do I link to my email account as an incoming email?????

  2. #2
    AmaDee is offline Colonel
    Join Date
    Jun 2006
    Location
    Stone Mountain, GA
    Posts
    851

    Default Re: Email links

    You need a form. Go to the Forms section of this forum and watch/read the toturials entitled BlueVoda Forms Tutorial Part 1 and 2.

  3. #3
    AmaDee is offline Colonel
    Join Date
    Jun 2006
    Location
    Stone Mountain, GA
    Posts
    851

    Default Re: Email links

    if you still need help, go to www.designsbymapillar.com and use my contact form and I will be glad to help put one together for you.

  4. #4
    bubsduck is offline Corporal
    Join Date
    Apr 2007
    Posts
    10

    Default Re: Email links

    Thank you... I went to the online totuarials on this and i got most of it... until I had to right click on my thank you page and then when it says to copy and paste and edit to my e mail I dont have that to copy and paste. I have every thing else. Any suggestions to why this is???

  5. #5
    AmaDee is offline Colonel
    Join Date
    Jun 2006
    Location
    Stone Mountain, GA
    Posts
    851

    Default Re: Email links

    here is the code. paste it in the "Inside Body Tag" in your page HTML

    <?PHP
    $email = $HTTP_POST_VARS[email];
    $mailto = "youremailaddress********.com";
    $mailsubj = "Your Subject Line";
    $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);
    ?>

    make sure to change the color parts.

  6. #6
    bubsduck is offline Corporal
    Join Date
    Apr 2007
    Posts
    10

    Default Re: Email links

    Thank you!!! I think I have it... although I dont know where to link that one to??? I have my index page+my contactus and then where do I link my thank you page to???

  7. #7
    AmaDee is offline Colonel
    Join Date
    Jun 2006
    Location
    Stone Mountain, GA
    Posts
    851

    Default Re: Email links

    you don't link it to anything. It's a page to comes up only to thank the person for submitting the form. It is recommended that you design it like the rest of your pages to add uniformity to your site and to encourage the person to keep browsing your site.

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