sending an email from a webform

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

    sending an email from a webform

    I need to send a large list of emails from a webform by clicking a single
    button. Microsoft's documentation for coding this seems straight forward
    and I'm about to begin experimenting with their sample code (VB.NET). I
    would like to know if it is possible to use HTML to format
    the emails as opposed to just text, i.e. use a picture for the header,
    specify fonts, bold text, center text etc. all from information stored in a
    database.
    Any examples or suggestions appreciated!
    Thanks
    Steven.


  • Cor Ligthert [MVP]

    #2
    Re: sending an email from a webform

    Steven,

    There are a lot of samples for mail. To sent with a webform you can.

    Use SMTP, that is using a mailserver (and not registrate the mails at client
    side)

    Use the default mail client, that is a very simple approach, however has
    too very few possibilities what you can do and one of those which you cannot
    is adding attachments.

    I hope this gives an idea

    Cor


    Comment

    • Carlos J. Quintero [VB MVP]

      #3
      Re: sending an email from a webform

      See: http://systemwebmail.com/

      --

      Best regards,

      Carlos J. Quintero

      MZ-Tools: Productivity add-ins for Visual Studio .NET, VB6, VB5 and VBA
      You can code, design and document much faster.
      Free resources for add-in developers:
      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.


      "Steven Bazeley" <swbaz@highstre am.net> escribió en el mensaje
      news:%239BpU1C2 FHA.3180@TK2MSF TNGP10.phx.gbl. ..[color=blue]
      >I need to send a large list of emails from a webform by clicking a single
      > button. Microsoft's documentation for coding this seems straight forward
      > and I'm about to begin experimenting with their sample code (VB.NET). I
      > would like to know if it is possible to use HTML to format
      > the emails as opposed to just text, i.e. use a picture for the header,
      > specify fonts, bold text, center text etc. all from information stored in
      > a
      > database.
      > Any examples or suggestions appreciated!
      > Thanks
      > Steven.
      >
      >[/color]


      Comment

      Working...