1
如果郵件主題包含某個字符串,我已經創建了一個小型Outlook插件,用於將鏈接添加到電子郵件正文中。目前,只有在打開郵件(雙擊)時纔會添加鏈接。有沒有一種方法可以在用戶不打開郵件的情況下添加鏈接?或者我不可能要求什麼?如果是這樣,爲什麼?將郵件添加到郵件正文的Outlook插件
void inspectors_NewInspector(Inspector Inspector)
{
Outlook.MailItem mailItem = Inspector.CurrentItem as Outlook.MailItem;
if (mailItem != null)
{
if (mailItem.Subject.StartsWith("ABCDE"))
{
mailItem.BodyFormat = OlBodyFormat.olFormatHTML;
mailItem.HTMLBody = "<html><body>Click <a href='www.google.com'>here</a>.<br><br></body></html>" + mailItem.HTMLBody;
mailItem.Save();
}
}
}