e-mailing

L

LJB

I have one of my forms set up so that if a particular checkbox is clicked,
an e-mail automatically opens so the user can notify the person responsible
for that account. Is there a way to write the code so that the language in
the body of the e-mail will be specific for each provider?
For example:

Instead of just having the e-mail say: "Provider has been billed" have it
say "Provider "A" has been billed" having "A" change for each provider.

Thank you in advance for any assistance.
 
A

AlCamp

LJB,
I take it your using SendObject...
You should be able to concatenate text and variables in the [Messagetext]
argument of the SendObject method.
SendObject................ , "Provider " & [Provider] & " has been
billed.",...............
I didn't test this, but it should work.
hth
Al Camp
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top