Results 1 to 3 of 3

Thread: email links with pre-defined subject?
      
   

  1. #1
    T Scott is offline Corporal
    Join Date
    Aug 2007
    Posts
    19

    Default email links with pre-defined subject?

    Anyone know how to set up an email link with predefined subject and body text? I searched the forum and couldn't find a way.

    Thanks,
    Tim

  2. #2
    Tom vR's Avatar
    Tom vR is offline Brigadier General
    Join Date
    Apr 2007
    Location
    Centurion, South Africa
    Posts
    1,733

    Default Re: email links with pre-defined subject?

    This is the help I've got a couple of months ago when I started. I'm sure it will help you too. Tell-a-friend email populated

  3. #3
    Watdaflip's Avatar
    Watdaflip is offline Major General
    Join Date
    Sep 2005
    Location
    Cincinnati, Ohio
    Posts
    2,119

    Default Re: email links with pre-defined subject?

    Might get a little technical but

    1) Make your form into a php page.
    2) Place this code so its before the <html> tag

    <?
    $define = $_GET['defined'];
    if($define == "TRUE")
    {
    $subject = "This is the first predefined subject";
    $message = "This is the first predefined subject";
    }
    ?>

    3) In the form field for the subject, set the "value" to "<?=$subject?>", and for the body set it to "<?=$message?>"

    4) Make your link to the form http://www.yoursite.com/contact.php?defined=TRUE
    The text I highlighted in blue and red can be changed to whatever you want (as well as the green), but the blue and red has to match each other (whatever you change it to if you do change it, you don't have to change anything except the green).

    I hope that helps

    Register/Login Script
    Do you use a Password Protected Directory? Need a way to allow users to make their own account, try my .htaccess Login Script

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