Results 1 to 3 of 3

Thread: Would like to include a pre-defined subject when user presses mailto: link
      
   

  1. #1
    Jacho is offline Corporal
    Join Date
    Oct 2007
    Posts
    13

    Default Would like to include a pre-defined subject when user presses mailto: link

    Hi

    When i link some text to the "mailto:" link, i would like to pre-write a "Subject" so that when the user emails me, they wont need to write the subject in, it will already be there. (Similar to the $mailsubj = "xxx"; in a form) ?

    I have included the HTML of the line that I would like to add to. The subject that i would like to include would be "More info on the 3rd year schedule". How would the HTML look if i had to add this in?

    <font style="font-size:13px" color="#000000" face="Arial"><a href="mailto:info@mcpbm.com">Click here</a> to ask me more</font>

    Many Thanks

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

    Default Re: Would like to include a pre-defined subject when user presses mailto: link

    Change
    Code:
    <a href="mailto:info@mcpbm.com">Click here</a>
    to
    Code:
    <a href="mailto:info@mcpbm.com?subject=More info on the 3rd year schedule">Click here</a>

    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

  3. #3
    Jacho is offline Corporal
    Join Date
    Oct 2007
    Posts
    13

    Default Re: Would like to include a pre-defined subject when user presses mailto: link

    thank you. much appreciated.
    works like a charm :)

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