email help

G

Guest

when you use the send macro, is it possible to have the
email start with a saved draft?
 
S

Steve Schapel

Yes. You will need to make a table with the applicable fields, so you
can save the Subject, Message Text, etc. Then, probably the easiest
approach is to have a form bound to this table, and then in the macro
arguments, refer to the controls on this form, using syntax such as, for
example...
=[Forms]![MessageData]![MessageText]
 
Top