How can I create stock emails to reply to clients?

  • Thread starter Thread starter Janet Todd
  • Start date Start date
On Tue, 9 Mar 2010 19:09:01 -0800, Janet Todd <Janet
Can anyone tell me how to do this please?

You'll have to explain your task in more detail. Is this in an Access database
(the subject of this forum)?
 
For email templates you have a few options:
1. use a service like Constant Contact
2. build it yourself

I can describe the basics for how I built email templates into my software.
See my website for more details.

- create a table to store the email template (from, to, cc, bcc, subject,
body etc..)
- create form to allow a user to build an email template
- the concept is you allow variables or merge fields into the various parts
of the email template
example: ##email## ##Firstname##

then at runtime your code loops thru a recordset and substitutes the
variables with the real data.
Think of it as just building strings on the fly.
After you have built the strings you can send the email.

If you want to see example of how I did it see both websites. I basically
used a concept similar to how Albert Kallal
approach word merge templates and did it with email templates.

Doing HTML email templates adds a bit more complexity if you build it
yourself since now you need an HTMl control
if you want a full WYSIWIG type application. nBit has a activex html
control.

Mark Andrews
RPT Software
http://www.rptsoftware.com
http://www.donationmanagementsoftware.com
 
l!n

"Janet Todd" <Janet (e-mail address removed)> a écrit dans le message
de groupe de discussion :
(e-mail address removed)...
 
Back
Top