本地展望& OWA签名

时间:2016-02-13 08:03:39

标签: c# outlook exchange-server office365

我有一个Office 365帐户,我在Office365帐户中应用了HTML签名。

在我的本地,我使用此Office 365帐户配置了Outlook。当我从本地Outlook发送电子邮件时,它不考虑Office 365的签名。

是否有可能在我的本地Outlook上应用相同的签名?如果我更改了Office365帐户中的签名,则相同的签名应该适用于我的本地Outlook。

目前我正在尝试这个C#代码。

ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2013_SP1);

service.Credentials = new WebCredentials(user, pasd);
service.AutodiscoverUrl(user, RedirectionUrlValidationCallback);

service.TraceEnabled = true;
Folder Root = Folder.Bind(service, WellKnownFolderName.Root);
UserConfiguration OWAConfig = UserConfiguration.Bind(service, "OWA.UserOptions", Root.ParentFolderId, UserConfigurationProperties.All);
hsHtmlSigniture = div;
String stTextSig = "Text sig";


if (OWAConfig.Dictionary.ContainsKey("signaturehtml"))
{
    OWAConfig.Dictionary["signaturehtml"] = hsHtmlSigniture;
}
else
{
    OWAConfig.Dictionary.Add("signaturehtml", hsHtmlSigniture);
}
if (OWAConfig.Dictionary.ContainsKey("signaturetext"))
{
    OWAConfig.Dictionary["signaturetext"] = stTextSig;
}
else
{
    OWAConfig.Dictionary.Add("signaturetext", stTextSig);
}

1 个答案:

答案 0 :(得分:0)

在Office 365中应用的签名将适用于通过OWA和移动应用程序发送的电子邮件。它不适用于Outlook。