Voting buttons

  • Thread starter Thread starter Si
  • Start date Start date
S

Si

Hi,

I'm using excel to automatically send emails but cannot
figure out how to use the voting buttons from excel vba.
thee procedure i'm using to generate the email is:

With olMessage
.Subject = strSubject
.body = strBody
.To = strApproved
.Send
End With

Any help?
Cheers
 
Each voting button is an Action object. You can use MailItem.Actions.Add to
add one. The Help topic on the Action object will tell you about the
properties you can set.
 
Thanks
but now I've been asked that the results of the vote go a
particular person and can't figure out how to use
the "have replies sent to" from VBA
 
MailItem.ReplyRecipients.Add is the method you're looking for.
 

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

Back
Top