e-mailing from a windows form

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

    e-mailing from a windows form

    I have done some research and cannot find the namespace for e-mailing from a
    Windows form - not a web form. I wanted to import System.Web, but cannot do
    so from a windows form.

    I have created a form where I would like to e-mail the clients whose e-mail
    addresses are completed.

    Thanks for any help.

    Brad


  • Herfried K. Wagner [MVP]

    #2
    Re: e-mailing from a windows form

    * "Brad" <applauseprod@h otmail.com> scripsit:[color=blue]
    > I have done some research and cannot find the namespace for e-mailing from a
    > Windows form - not a web form. I wanted to import System.Web, but cannot do
    > so from a windows form.[/color]

    You will find classes in the 'System.Web.Mai l' namespace. Add a
    reference to "System.Web.dll " to your project and import the namespace.

    --
    Herfried K. Wagner [MVP]
    <http://www.mvps.org/dotnet>

    Comment

    • Brad

      #3
      Re: e-mailing from a windows form

      Thanks for the help. This worked just fine. You have helped me before and
      again I thank you.

      Brad

      "Herfried K. Wagner [MVP]" <hirf-spam-me-here@gmx.at> wrote in message
      news:OxI%23ahZz DHA.2060@TK2MSF TNGP10.phx.gbl. ..[color=blue]
      > * "Brad" <applauseprod@h otmail.com> scripsit:[color=green]
      > > I have done some research and cannot find the namespace for e-mailing[/color][/color]
      from a[color=blue][color=green]
      > > Windows form - not a web form. I wanted to import System.Web, but[/color][/color]
      cannot do[color=blue][color=green]
      > > so from a windows form.[/color]
      >
      > You will find classes in the 'System.Web.Mai l' namespace. Add a
      > reference to "System.Web.dll " to your project and import the namespace.
      >
      > --
      > Herfried K. Wagner [MVP]
      > <http://www.mvps.org/dotnet>[/color]


      Comment

      • KJM

        #4
        Re: e-mailing from a windows form

        remember this will only work with: Platforms: Windows 2000, Windows XP
        Professional, Windows Server 2003 family
        if that matters to you.

        "Brad" <applauseprod@h otmail.com> wrote in message
        news:upD1WmZzDH A.604@tk2msftng p13.phx.gbl...[color=blue]
        > Thanks for the help. This worked just fine. You have helped me before[/color]
        and[color=blue]
        > again I thank you.
        >
        > Brad
        >
        > "Herfried K. Wagner [MVP]" <hirf-spam-me-here@gmx.at> wrote in message
        > news:OxI%23ahZz DHA.2060@TK2MSF TNGP10.phx.gbl. ..[color=green]
        > > * "Brad" <applauseprod@h otmail.com> scripsit:[color=darkred]
        > > > I have done some research and cannot find the namespace for e-mailing[/color][/color]
        > from a[color=green][color=darkred]
        > > > Windows form - not a web form. I wanted to import System.Web, but[/color][/color]
        > cannot do[color=green][color=darkred]
        > > > so from a windows form.[/color]
        > >
        > > You will find classes in the 'System.Web.Mai l' namespace. Add a
        > > reference to "System.Web.dll " to your project and import the namespace.
        > >
        > > --
        > > Herfried K. Wagner [MVP]
        > > <http://www.mvps.org/dotnet>[/color]
        >
        >[/color]


        Comment

        Working...