In my Outlook 2013 add-in I want inline response form to use a form region with some additional controls.
When I open a message in a new window and click Reply customized form opens. But if I do it inline the standard outlook's Reply form opens.
Here is some code:
private void ReplyEventHandler(object Response, ref bool Cancel)
{
((MailItem)Response).MessageClass = "IPM.Note.MyCustomClass";
}