sending mails

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • krishna

    sending mails

    Hi,
    I have a doubt stating that
    i have to send the email with some message how to do it in
    ASP.NET.

    Regards,
    Krishna.
  • Ken Tucker [MVP]

    #2
    Re: sending mails

    Hi,

    Use the mail message class


    Ken
    ------------
    "krishna" <venkatkrishna. k@gmail.com> wrote in message
    news:236e01c508 ea$bc67b5d0$a50 1280a@phx.gbl.. .
    Hi,
    I have a doubt stating that
    i have to send the email with some message how to do it in
    ASP.NET.

    Regards,
    Krishna.


    Comment

    • Cor Ligthert

      #3
      Re: sending mails

      Krishna,

      It depends the way you want it, from the clientside
      \\\
      Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
      System.EventArg s) Handles MyBase.Load
      If Not IsPostBack Then
      Me.Button1.Text = "Send Mail"
      Me.Button1.Attr ibutes("onClick ") =
      "window.locatio n='mailto:non@n on.com?subject= Cor demo&body=I hope this
      helps?';"
      End If
      End Sub
      ///

      I hope this helps a little bit?

      Cor


      Comment

      • Carlos J. Quintero [.NET MVP]

        #4
        Re: sending mails

        See: http://systemwebmail.com/
        --

        Carlos J. Quintero

        MZ-Tools 4.0: Productivity add-ins for Visual Studio .NET
        You can code, design and document much faster.
        MZ-Tools has a single goal: To make your everyday programming life easier. As an add-in to several Integrated Development Environment (IDEs) from Microsoft, MZ-Tools adds new menus and toolbars to them that provide many new productivity features.



        "krishna" <venkatkrishna. k@gmail.com> escribió en el mensaje
        news:236e01c508 ea$bc67b5d0$a50 1280a@phx.gbl.. .[color=blue]
        > Hi,
        > I have a doubt stating that
        > i have to send the email with some message how to do it in
        > ASP.NET.
        >
        > Regards,
        > Krishna.[/color]


        Comment

        • Herfried K. Wagner [MVP]

          #5
          Re: sending mails

          "krishna" <venkatkrishna. k@gmail.com> schrieb:[color=blue]
          > i have to send the email with some message how to do it in
          > ASP.NET.[/color]

          Sending and receiving email
          <URL:http://dotnet.mvps.org/dotnet/faqs/?id=email&lang= en>

          --
          M S Herfried K. Wagner
          M V P <URL:http://dotnet.mvps.org/>
          V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

          Comment

          Working...