Programmatically creating emails with default stationery

  • Thread starter Thread starter Ken Warthen
  • Start date Start date
K

Ken Warthen

I'm developing an Access database that has among other things a feature that
allows the user to create project notes. An option of this features provides
for an email confirmation, so if the note is related to a telephone
conversation the communication is documented for both parties.

The email utility was working fine until I was asked to have the message be
sent out using the company's default HTML stationery. I've looked on
OutlookCode.com and elsewhere, but have had no luck finding a workable
solution. Has anyone faced this issue before and found a solution? Any help
will be greatly appreciated.

Ken
 
Pseudocode:

string stationery = LoadDesiredStationeryAsString();
item.HTMLBody = stationery;
 
Ken,

Thanks for the help. I was kind of working toward a similar solution, but
couldn't figure out how to load the html file for editing within an Access
function.

Ken
 
Back
Top