Results 1 to 4 of 4

Thread: E-Mail Links

  1. #1
    Join Date
    Nov 2008
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default E-Mail Links

    Hello,
    Need assistance or advice please. Every one knows that
    <a href="mailto:address@server">Send me Email</a> Will give you a link for sending mail. My problem is when someone clicks the link it sends them to Outlook or their internet service provider. I wish to have it direct them to their mail service of choice, or give an option to pick which I prefer to use. Is there any thing that can accomplish this?
    Thank you, Darc

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    If you mean something like hotmail, no. There is no way to know if a user has a web based email provider or not. That's one reason why you should generally avoid an email link like that. A better way to do it is to setup a form that will use your host or a third party to mail whatever the user fills out in the form, including their return address, to you.

    This must be done on the server side using asp, PHP and/or formail. Third party providers of this type of service can make this fairly easy to setup. See:

    http://www.google.com/search?hl=en&c...ms&btnG=Search
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Aug 2005
    Location
    Other Side of My Monitor
    Posts
    3,494
    Thanks
    5
    Thanked 105 Times in 104 Posts
    Blog Entries
    1

    Default

    My problem is when someone clicks the link it sends them to Outlook or their internet service provider.
    This happens because the user has this set up as their default mail program on their computer, and as John pointed out you can't control another persons computer or what programs they may or may not have installed.

    I may have Outlook and Thunderbird and use only Thunderbird, but if I haven't set up Windows (or other OS) to see Thunderbird as my default mail client when I click a mailto: link the computer will open Outlook.

    Its a user setting
    {CWoT - Riddle } {Freelance Copywriter} {Learn to Write}
    Follow Me on Twitter: @InkingHubris
    PHP Code:
    $result mysql_query("SELECT finger FROM hand WHERE id=3");
    echo 
    $result

  4. #4
    Join Date
    Dec 2008
    Location
    Torrance CA
    Posts
    18
    Thanks
    3
    Thanked 2 Times in 2 Posts

    Default

    Quote Originally Posted by darckn1ght View Post
    Hello,
    Need assistance or advice please. Every one knows that
    <a href="mailto:address@server">Send me Email</a> Will give you a link for sending mail. My problem is when someone clicks the link it sends them to Outlook or their internet service provider. I wish to have it direct them to their mail service of choice, or give an option to pick which I prefer to use. Is there any thing that can accomplish this?
    Thank you, Darc

    instead of <a href="mailto:address@server"> might want to try:

    <a action="mailto:address@server">

    let me know if it works..

Bookmarks

Posting Permissions

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