outofmemoryerror
Programmer
Hello,
My company has a custom tool which we use to create customized emails. A user selects from a toolbar a number of options, and an email is created with a set subject, recipients, body etc.
I've been asked to configure an email so that it is created with two voting buttons which recipients can use to respond to it.
Does anyone know how i programmatically add voting buttons to an email? (i need to be able to perform by code what i can do manually by selecting "options" and ticking the voting buttons option, and configuring it).
Here's the kind of code already in use to create the mail:
Set myitem = Application.CreateItem(0)
myitem.Subject = subjectvar
myitem.To = tovar
myitem.display
Is there perhaps some kind of myitem.votingbuttons??
Thanks in advance for any assistance.
My company has a custom tool which we use to create customized emails. A user selects from a toolbar a number of options, and an email is created with a set subject, recipients, body etc.
I've been asked to configure an email so that it is created with two voting buttons which recipients can use to respond to it.
Does anyone know how i programmatically add voting buttons to an email? (i need to be able to perform by code what i can do manually by selecting "options" and ticking the voting buttons option, and configuring it).
Here's the kind of code already in use to create the mail:
Set myitem = Application.CreateItem(0)
myitem.Subject = subjectvar
myitem.To = tovar
myitem.display
Is there perhaps some kind of myitem.votingbuttons??
Thanks in advance for any assistance.