在Outlook 2010中的传入邮件规则中运行的脚本中重定向或发送邮件


1

我有以下问题:

  • 我有邮件到达我的邮箱
  • 这些邮件在正文中包含一个特定的字符串
  • 我想做的是:
    • - >从身体中删除此字符串
    • - >然后将此正文发送到另一个邮件地址(发送,而不是转发)

我做了什么:

一个。 创建了一条规则,用于在描述中包含特定字符串的传入消息中激活脚本

这是规则说明:

Apply to message
with "Maileater" in the subject
  and on this computer only
run "Project1.ChangeString"

B. 使用以下说明创建脚本:

Public Sub ChangeString(MyMail As MailItem)

   Dim body As String
   body = MyMail.body

   body = Replace (body, "=====================================================", " ")
   MyMail.body = body

   MyMail.Save
End Sub

C。 现在我想在脚本中添加指令,在更换字符串后,将主体(或MyMail.body)发送到特定的邮件地址(例如Support@AXA.be,其中包含“支持询问”的说明)。

这可能吗?

有人可以帮助我,我会非常感激,因为这将为我消除大量的手工工作。

这只是邮件的一个例子,真实的东西将包含其他替换和邮件发送。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.