Ask a Question related to ASP, Design and Development.
-
Dave Navarro #1
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
-
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.. ... -
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:... -
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... -
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... -
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... -
Ray at #2
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
-
Dave Navarro #3
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 = ResponseDave Navarro Guest



Reply With Quote

