Hi All,
I couldn't able to retrieve Embedded image using Ribbon menu.
public void ReplyAllWithAttachment(Office. IRibbonControl control)
{
ReplyWithAttachments( true );
}
public void ReplyWithAttachments( bool isreplyall)
{
Outlook. MailItem rpl;
object item;
item = GetCurrentItem();
try
{
if (item != null )
{
Outlook. MailItem mailItem = item as Outlook. MailItem ;
rpl = (Outlook. MailItem )mailItem.Reply();
CopyAttachments(mailItem, rpl);
rpl.BodyFormat = Outlook. OlBodyFormat .olFormatHTML;
rpl.Display();
rpl = null ;
item = null ;
}
}
catch ( Exception ex)
{
WriteLog(ex.T