Email with html controls

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • kaleeswarun@gmail.com

    Email with html controls

    Hi All,
    I need to send a email with the html controls like textboxes and dropdowns with predefined values from the sql server database and get back the changes which are made by the email receiver and store it into the database.

    How can I acheive this? Could anyone help me please?

    Thanks,
    Kalees
    kaleeswarun@gma il.com
  • rowe_newsgroups

    #2
    Re: Email with html controls

    On Feb 14, 7:16 am, kaleeswa...@gma il.com wrote:
    Hi All,
    I need to send a email with the html controls like textboxes and dropdowns with predefined values from the sql server database and get back the changes which are made by the email receiver and store it into the database.
    >
    How can I acheive this? Could anyone help me please?
    >
    Thanks,
    Kalees
    kaleeswa...@gma il.com


    Thanks,

    Seth Rowe [MVP]

    Comment

    • Patrice

      #3
      Re: Email with html controls

      Hi,

      You could try a form with a mailto action. If I remember it should sent
      field values to this mailbox and it could then be processed for db
      insertion. Note thought that it could work or not depending on client side
      settings or support...

      My personal preference would be to send them a link to a website and have
      them filling directly the form on a web site.

      --
      Patrice

      <kaleeswarun@gm ail.coma écrit dans le message de news:
      uFXagNwbIHA.120 4@TK2MSFTNGP03. phx.gbl...
      Hi All,
      I need to send a email with the html controls like textboxes and dropdowns
      with predefined values from the sql server database and get back the
      changes which are made by the email receiver and store it into the
      database.
      >
      How can I acheive this? Could anyone help me please?
      >
      Thanks,
      Kalees
      kaleeswarun@gma il.com

      Comment

      • Herfried K. Wagner [MVP]

        #4
        Re: Email with html controls

        <kaleeswarun@gm ail.comschrieb:
        I need to send a email with the html controls like textboxes and dropdowns
        with predefined values from the sql server database and get back the
        changes which are made by the email receiver and store it into the
        database.
        I am not sure if mail clients support that (for security reasons) but it may
        be possible to use 'form' elements with corresponding HTML form elements
        ('input', 'textarea', ...) to build the form. The 'submit' button could
        trigger a script on your server which gets the fields transferred using
        'POST', for example.

        'System.Net.Mai l' can be used to send the e-mail.

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

        Comment

        Working...