本文介绍了在CreateItemTemplate之后删除签名的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用下面的代码为新模板找到,但是我想删除签名.

I am using the below code that I found for a new template but I want to delete the signature.

在下面的代码之后,我需要代码来删除签名,或者需要一个全新的代码来打开新电子邮件,清除正文,然后插入模板.

I either need code to delete the signature after the below code or a completely new code that opens a new email, clears body then inserts template.

Sub NewTemplate()
Set objMsg = Application.CreateItemFromTemplate("S:\filepath.oft")
Set newItem = Nothing
With objMsg
    .SentOnBehalfOfName = "[email protected]"
    .Display
End With
End Sub

推荐答案

Set objDoc = objMsg.GetInspector.WordEditor
If objDoc.Bookmarks.Exists("_MailAutoSig") Then
   set objBkm = objDoc.Bookmarks("_MailAutoSig")
   objBkm.Select
   objDoc.Windows(1).Selection.Delete
End If

这篇关于在CreateItemTemplate之后删除签名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-22 02:50