作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 VBA 在发送之前以某种方式格式化所有出站电子邮件。例如,我想从嵌入在电子邮件中的所有表中删除第一列。我使用以下代码:
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Dim wd As Word.Document
Set wd = ActiveInspector.WordEditor
Dim tb As Word.Table
For Each tb In wd.Tables
tb.Columns(1).Delete
Next tb
End Sub
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Dim wd As Word.Document
Dim smail as SubEmail
Dim tb As Word.Table
Set wd = ActiveInspector.WordEditor
For Each smail in wd
For Each tb In wd.Tables
tb.Columns(1).Delete
Next tb
Exit For
Next smail
End Sub
最佳答案
为什么不直接查找 "From:"chr(13) "Sent:"? Outlook 会将这些标签放在任何电子邮件中,无论它来自何处。
假设上面示例中的电子邮件 a、b、c 的整个正文都在 sBody 中:
Sub GetFirstThread()
Dim olItem As Outlook.MailItem
Dim sText As String
Set olItem = ActiveExplorer.Selection.Item(1)
sBody = olItem.Body
i=1
While i < Len(sBody)
If Asc(Mid(sBody, i, 1)) = 13 Then 'Look for From:
If Mid(sBody, i + 1, 5) = "From:" Then
'we found the start of email b
nPosEb = i
End If
End If
i=i+1
Wend
'...do something with nPosEb
End Sub
关于vba - Outlook 在电子邮件线程中获取其他电子邮件--UniqueBody,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16472344/
我正在使用 VBA 在发送之前以某种方式格式化所有出站电子邮件。例如,我想从嵌入在电子邮件中的所有表中删除第一列。我使用以下代码: Private Sub Application_ItemSend(B
我有以下代码,并且有效: private void OnEvent(object sender, NotificationEventArgs args) { StreamingSubscrip
我从以前的开发人员那里继承了一个项目的责任,该开发人员接收传入的电子邮件并将其处理为客户支持票。 它大多工作正常,但一封特定的电子邮件出现问题,我不知道为什么。 在 Outlook 中,电子邮件显然具
我是一名优秀的程序员,十分优秀!