Creating an Email containing a Web site form

Ask a Question related to ASP, Design and Development.

  1. #1

    Default Creating an Email containing a Web site form

    I would like to write a generalised page which creates an email
    containg the (calling) HTML form complete with the user populated
    data.

    In this way the appearance of the email will be just like the form
    elements of the form that called the generalised page together with
    the completed fields.

    I can see that I can caputure the (blank) calling page itself in the
    email by using the CreateMHTMLBody method of CDO. I can also see how I
    can retreive the individual elements of the form using Request. But is
    it possible to combine the two?

    Any guidance greatly appreciated.


    Alan Morris Guest

  2. Similar Questions and Discussions

    1. creating an email link in PDF (v7)
      Hi, I would think this is the simplest thing on earth to do, and yet I'm getting nowhere with online help or pulling down menus. I know how to...
    2. Connenting email form to an email account
      :( I am at a mental brickwall. I created a form, created two text fields and a "log in" button. What I want to have happen is when a person goes to...
    3. Creating email link
      Can anyone tell me how to create an "Email this page to a friend" link? Thx!
    4. Creating Email Stationery
      I've created some letterhead in Illustrator CS for printing which turned out okay. However, I'd like to set it up in html format now and use it as...
    5. Creating an email web form
      Just wondering if it's possible to create a simple email form so I don't have to post my email address on my website. Basically, I just want a form...
  3. #2

    Default Re: Creating an Email containing a Web site form

    You can create a form in an html e-mail just fine, but the action of the
    form will have to be a fully qualified url to your site, like

    <form action="http://yoursite.com/page.asp" ...>

    If I were you though, I'd just send a link to a form on a website though.
    Not every e-mail program will display the form (or any html) or allow
    submission of forms.

    Ray at work

    "Alan Morris" <alan@address.withheld.com> wrote in message
    news:1n3uovs8qisnu31s9j4uceh6rbbfcivb9i@4ax.com...
    > I would like to write a generalised page which creates an email
    > containg the (calling) HTML form complete with the user populated
    > data.
    >
    > In this way the appearance of the email will be just like the form
    > elements of the form that called the generalised page together with
    > the completed fields.
    >
    > I can see that I can caputure the (blank) calling page itself in the
    > email by using the CreateMHTMLBody method of CDO. I can also see how I
    > can retreive the individual elements of the form using Request. But is
    > it possible to combine the two?
    >
    > Any guidance greatly appreciated.
    >
    >

    Ray at Guest

  4. #3

    Default Re: Creating an Email containing a Web site form

    Ray,

    Thanks your suggestion on this, what I was trying to do is capture the
    completed form (not just the form data fields) as filled out by the
    user. The idea is to create a system to replace/emulate an existing
    paper forms with EMail based forms.

    So the email recipient 'sees' the form as completed by the user, and
    is able to file as he/she would have done with a piece of paper.

    I want the asp that actually creates the mail message to be general in
    teh sense that it does it (te above) for any calling page.

    Rgds

    On Fri, 17 Oct 2003 10:22:13 -0400, "Ray at <%=sLocation%>"
    <myfirstname at lane34 dot com> wrote:
    >You can create a form in an html e-mail just fine, but the action of the
    >form will have to be a fully qualified url to your site, like
    >
    ><form action="http://yoursite.com/page.asp" ...>
    >
    >If I were you though, I'd just send a link to a form on a website though.
    >Not every e-mail program will display the form (or any html) or allow
    >submission of forms.
    >
    >Ray at work
    >
    >"Alan Morris" <alan@address.withheld.com> wrote in message
    >news:1n3uovs8qisnu31s9j4uceh6rbbfcivb9i@4ax.com.. .
    >> I would like to write a generalised page which creates an email
    >> containg the (calling) HTML form complete with the user populated
    >> data.
    >>
    >> In this way the appearance of the email will be just like the form
    >> elements of the form that called the generalised page together with
    >> the completed fields.
    >>
    >> I can see that I can caputure the (blank) calling page itself in the
    >> email by using the CreateMHTMLBody method of CDO. I can also see how I
    >> can retreive the individual elements of the form using Request. But is
    >> it possible to combine the two?
    >>
    >> Any guidance greatly appreciated.
    >>
    >>
    >
    Alan Morris Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139