Lotus Notes 中自动转发带附件的电子邮件的按钮

Button in Lotus Notes that automatically forwards en email with attachment

我正在尝试在 IBM Notes 中制作一个按钮,自动将带有附件的电子邮件转发到特定地址。

我已经查看了该网站上的 2 个先前示例,但其中 none 个对我有用,我将邮件转发给了自己。

有人能帮忙吗?

我尝试过的 2 个代码是:

_From := @Text(From);
@Command([MailForward]);
@Command([EditNextField]);
@Command([EditInsertText]; _From);
@Command([EditGotoField]; "Body");
@Command([EditInsertText]; "Your text" + @NewLine + "goes here...")

FIELD SendTo:= "person@mail.com" ; 
@Command( [MailForwardAsAttachment] )

我使用的 IBM Notes 版本是 #9。

谢谢

使用第一个示例并将其更改为:

@Command([MailForward]);
@Command([EditInsertText]; "person@mail.com");
@Command([EditGotoField]; "Body");
@Command([EditInsertText]; "Your text" + @NewLine + "goes here...")

将第二行代码中的电子邮件地址替换为您的特定地址,并调整其余行。