SendObject - not as an attachment

M

Matt Garndner

I am trying to create a macro that will send a record from a form to a
specific email address. I am using SendObject, at this works the way that it
should, but I DO NOT want the record to be sent as an attachment.

I would like for it to appear in the body of the email!

Is this possible?

Thanks in advance!
 
Z

Zadok @ Port of Seattle

Put the fields you want in the Message Text field (an Action Argument for the
Send Object macro command).

ex.
=[Forms]![frmName]![Field1]

It's pretty basic but surely better than a clunky attachment.
Zadok
 
S

Sandy

This worked for me.

To make this more flexible, I created a field on my form that concatenated
all the data I wanted to send. You can insert text, URLs and other content as
well.

Here is an example:

=[firstname] & " " & [lastname] & " has applied for the positon of " &
[position] & ". Please open the Resumes database at [\\resumes\database] to
review this resume. Please also update the tracking tab."

This allows you to reference only one field -- [Field1] in the example
below-- and avoid a sting too long error.

Hope this helps!
sandy
 

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