email links

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ganesh22
    Banned
    New Member
    • Sep 2007
    • 81

    email links

    Hi,
    Iam writing email application in C#, in that iam using from , to , body concepts these 3 are writing in C# code source code only. mow my requirement is i want to send some website & email links in body but these links are visible in text only i want website address and email address are visible in hyperlinks

    my body code in email:

    string Body = "Hi, <br /> Test Plz visit this website : www.xyz.com <br /> if any queries plz send to aaa@aaa.com";
  • yogarajan
    New Member
    • Apr 2007
    • 115

    #2
    Hi

    using isbodyhtml property

    example

    .IsBodyHtml = true;


    Thanks

    Yogarajan.G

    Originally posted by ganesh22
    Hi,
    Iam writing email application in C#, in that iam using from , to , body concepts these 3 are writing in C# code source code only. mow my requirement is i want to send some website & email links in body but these links are visible in text only i want website address and email address are visible in hyperlinks

    my body code in email:

    string Body = "Hi, <br /> Test Plz visit this website : www.xyz.com <br /> if any queries plz send to aaa@aaa.com";

    Comment

    • Frinavale
      Recognized Expert Expert
      • Oct 2006
      • 9749

      #3
      Originally posted by ganesh22
      Hi,
      Iam writing email application in C#, in that iam using from , to , body concepts these 3 are writing in C# code source code only. mow my requirement is i want to send some website & email links in body but these links are visible in text only i want website address and email address are visible in hyperlinks

      my body code in email:

      string Body = "Hi, <br /> Test Plz visit this website : www.xyz.com <br /> if any queries plz send to aaa@aaa.com";
      Are you displaying emails?
      Or just sending them?

      I believe this has to do with your email client settings...some where in options there will be a "display emails as HTML" option.

      -Frinny

      Comment

      Working...