user1525825
user1525825

Reputation: 269

Mail forwarding using Lotus Domino

We use Domino 8.5.3 environment. We want to "forward" an email message to another email address. But to do so we will have to first parse a token from the "subject line" of the original incoming email. And then if that token is found, we will have to forward this message to another email address. Can this be easily be done using Domino without some LotusScript programming?. How can this be done by setting Domino messaging rules if at all can be done smoothly. Please provide me some sample links which can be useful.

Thanks in advance

Upvotes: 0

Views: 520

Answers (2)

Éric Viala
Éric Viala

Reputation: 616

You can create an agent that is triggered by the event "When mail arrives" and use @Functions, something like

@if( @contains( Subject ; "Token" ; @MailSend( .......

Upvotes: 0

Per Henrik Lausten
Per Henrik Lausten

Reputation: 21709

Create a mail rule using the "Subject contains" option with a "send copy to" action. Here's an example:

enter image description here


This question is more suited for superuser.com.

Upvotes: 2

Related Questions