Ask a Question related to ASP, Design and Development.

  1. #1

    Default Email a web page.

    A client of mine has a form that vendors are required to fill out on the
    web site.

    Some vendors (don't ask me why) do not have Internet access and she
    needs to fax the form to them.

    She would like the web site to send the form as a fax to the vendor
    (we're signed up with Send2Fax for email to fax support).

    SendFax supports HTML mail and I was able to copy the HTML output and
    successfully send it to myself.

    However, the form is built dynamically from a database using
    "response.write" in the code.

    After I have output all of the code to the server using response.write,
    is there any way to retreive a copy of the outgoing stream?

    I'm trying to be lazy here and not have to rebuild the form in email.

    Thanks!

    --Dave
    Dave Navarro Guest

  2. Similar Questions and Discussions

    1. send an email from ASP page
      Hi, I wish to send the user entered data through email to the Admin. Iam trying to use CDO object but it gives me the following message.. ...
    2. Sending email using ASP page: how?
      "who be dat?" <forgetit@dot.com> wrote in message news:vlhfq5he815u1c@corp.supernews.com... FAQ. See the Windows XP section:...
    3. Email asp page
      I have an asp page with lots of dynamic content and was wondering if there are any available plugins/extensions that would allow me to send this...
    4. html page to email
      What is the proper way to design an html page to be emailed? How do I place it in the email? I have tried a few ways and the most successful does...
    5. Auto page start in an email
      I have noticed a number of (spam I'm afraid) emails I have received lately automatically link to and open a web page embedded in the email as soon...
  3. #2

    Default Re: Email a web page.

    You can either substitute all your response.writes with sHTML = sHTML & (or
    something along those lines - we don't need to debate joining arrays vs.
    concatenating as you go), or you can use this [url]http://www.aspfaq.com/2173[/url] and
    treat your site as though it is the remote site. Unfortunately, you can't
    just do something like:

    sEmailBody = Response

    Ray at work

    "Dave Navarro" <dave@dave.dave> wrote in message
    news:MPG.1a00a5b5a87c44c598976f@news-40.giganews.com...
    > A client of mine has a form that vendors are required to fill out on the
    > web site.
    >
    > Some vendors (don't ask me why) do not have Internet access and she
    > needs to fax the form to them.
    >
    > She would like the web site to send the form as a fax to the vendor
    > (we're signed up with Send2Fax for email to fax support).
    >
    > SendFax supports HTML mail and I was able to copy the HTML output and
    > successfully send it to myself.
    >
    > However, the form is built dynamically from a database using
    > "response.write" in the code.
    >
    > After I have output all of the code to the server using response.write,
    > is there any way to retreive a copy of the outgoing stream?
    >
    > I'm trying to be lazy here and not have to rebuild the form in email.
    >
    > Thanks!
    >
    > --Dave

    Ray at Guest

  4. #3

    Default Re: Email a web page.

    Thanks!

    So much for the lazy approach.

    --Dave

    In article <#Pw6FYNmDHA.1284@TK2MSFTNGP09.phx.gbl>, "Ray at <%
    =sLocation%>" <myfirstname at lane34 dot com> says...
    > You can either substitute all your response.writes with sHTML = sHTML & (or
    > something along those lines - we don't need to debate joining arrays vs.
    > concatenating as you go), or you can use this [url]http://www.aspfaq.com/2173[/url] and
    > treat your site as though it is the remote site. Unfortunately, you can't
    > just do something like:
    >
    > sEmailBody = Response
    Dave Navarro 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