0
Dynamic email based on DB?
Explorer
,
/t5/dreamweaver-discussions/dynamic-email-based-on-db/td-p/502003
Dec 03, 2007
Dec 03, 2007
Copy link to clipboard
Copied
I have CDO set up that I can mass email from a Access DB and
it works fine. My client would like to be able to send HTML based
email. (I have created a HTML email) How can I allow the client to
send HTML email without having to code in the body of the email. I
would like to allow the client to basically create the info. for
the body and then have it insert into the HTML and then send the
HTML out.
I am using Dreamweaver CS3, ASP, Access and VBScript.
How can I dynamically based on the DB allow the client to simply type the body of the email and save it to the DB then have the body added to the HTML code after it calls the info. from the DB and send it out in HTML only so it displays in the email as basic HTML.
I hope that I have explained this good enough.
thanks
B
I am using Dreamweaver CS3, ASP, Access and VBScript.
How can I dynamically based on the DB allow the client to simply type the body of the email and save it to the DB then have the body added to the HTML code after it calls the info. from the DB and send it out in HTML only so it displays in the email as basic HTML.
I hope that I have explained this good enough.
thanks
B
TOPICS
Server side applications
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
theMachien
AUTHOR
Explorer
,
/t5/dreamweaver-discussions/dynamic-email-based-on-db/m-p/502004#M139321
Dec 05, 2007
Dec 05, 2007
Copy link to clipboard
Copied
Anyone?
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
LEGEND
,
LATEST
/t5/dreamweaver-discussions/dynamic-email-based-on-db/m-p/502005#M139322
Dec 05, 2007
Dec 05, 2007
Copy link to clipboard
Copied
"theMachien" <webforumsuser@macromedia.com> wrote in message
news:fj1hnf$l3i$1@forums.macromedia.com...
> I have CDO set up that I can mass email from a Access DB and it works
> fine. My
> client would like to be able to send HTML based email. (I have created a
> HTML
> email) How can I allow the client to send HTML email without having to
> code in
> the body of the email. I would like ot allow the client to basically
> create
> the info. for the body and then have in inserted into the HTML and then
> send
> the HTML out.
>
> I am using Dreamweaver CS3, ASP, Access and VBScript.
>
> How can I dynamically based on the DB allow the client to simply type the
> body
> of the email and save it to the DB then have the body added to the HTML
> code
> after it calls the info. from the DB and send it out in HTML only so it
> displays in the email as basic HTML.
>
> I hope that I have explained this good enough.
I'm not sure what you're asking, it seems you have a good idea about the
process.
In essence you would do exactly as you say, save the body in your database
and construct the complete HTML document using that snippet from your
database.
strBody = "<html><head></head><body>" & BODY_FROM_DATABASE &
"</body></html>"
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

