CheckBox doesn't show in Email

S

Steve

ActiveWorkbook.EnvelopeVisible = True
sSubject = "Any Text " & CStr(ActiveSheet.Range("B2").Value)
vSend = "(e-mail address removed)"
With ActiveSheet.MailEnvelope
.Introduction = ExtraStuff
.Item.To = vSend
.Item.Subject = sSubject
.Item.Send
End With

When I send a spreadsheet with the above code, the multiple checboxes in the
captured area do not show in the Email (Outlook). Is there a setting or code
that would make these visible as they reflect choices made during data entry.
Thanks Steve
 

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