e-mailing

  • Thread starter Thread starter LJB
  • Start date Start date
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.
 
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
 
Back
Top