本文介绍了在非托管C ++中使用OL14_MailItem :: SetRTFBody()函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,

我想设置Outlook电子邮件的RTF  Body。但是使用以下代码它不起作用。

I want to set the RTF Body of outlook e-mail message. But with the following code it is not working.


<pre lang="x-cpp">OL14_MailItem* pMailItem = NULL;
OL14_Application* pOLApp = (OL14_Application*)pOLApplication;
if( pOLApp ) {
	pMailItem = new OL14_MailItem( pOLApp->CreateItem( 0 ) );
}

..............

tagVARIANT varText;
varText.vt = VT_BSTR;
CString m_strTEXT = _T("");
m_strTEXT = _T("{\\rtf1\\ansi{\\fonttbl\\f0\\fswiss Helvetica;}\\f0\\pard This is some {\\b bold} text.\\par}");
CComBSTR bstrText( m_strTEXT.GetBuffer( m_strTEXT.GetLength() ) );
m_strTEXT.ReleaseBuffer();
varText.bstrVal = bstrText;
pMailItem->SetRTFBody( varText );

推荐答案


这篇关于在非托管C ++中使用OL14_MailItem :: SetRTFBody()函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-09 13:42