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
 
Back
Top