1

I am reading the incoming mails from a outlook mailbox using automation anywhere Email Automation - Get All Messages menu. My simple code is given below. But everytime I am getting html objects and tags printing in the message box, I want only the email message.

Start Loop "Each message on server:outlook.office.365.com,User Name:xyz@xyz.com,SSL Server Type:POP3,Message Format:Plain Text"
    Message Box:"$Email Message$"

Can anyone help????

4

1 回答 1

1

在您原来的电子邮件自动化 - 获取所有消息命令中,端口号下方应该有一个“消息格式”选项。

如果没有 - 您可以卸载到可能看起来像这样的 javascript 脚本并通过运行脚本调用它:

function noTags(vString) {
    return vString.replace(/<(.|\n)*?>/g, '');
}

将 vString 传递给它并让 vString 回来,现在没有标签。

于 2018-09-05T17:57:09.300 回答