Checkbox not showing in Email

S

Steve

I have several checkboxes on a worksheet which get emailed after all filled
in, via some VB code. My problems is the checkboxes don't show in the email.
The code I'm using to send is included but I don't think it's the problem.

Worksheets("Start").Range("A1:K55").Select
ActiveWorkbook.EnvelopeVisible = True
sSubject = "PriZm Roll Log PLS: " & CStr(ActiveSheet.Range("B2").Value)
vSend = "xys@123corp"
With ActiveSheet.MailEnvelope
.Introduction = ExtraStuff
.Item.To = vSend
.Item.Subject = sSubject
.Item.Send
End With
The resulting email shows nothing (blanks)where the checkboxes are located.
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