Hi
In a BOT I am using a template to be sent to various email recipients. The fields are:
[SendTo]
[CcTo]
Both are drop downs which work as they should very effectively.
In the CC section, I need to add an email recipient using the 'Add' facility but I only want that email to be fired if [SendTo] contains a specific recipient and ignore any other recipient.
In summary.
If [Sendto] = "JoeBloggs@SomeEmail.com" then [CcTo] "Jack@AnotherEmail.com"
I'm not sure of the syntax and would like some help please.
TIA
Solved! Go to Solution.
It is not clear if you wish this expression for only one particular [SendTo] or there will always be some combination.
If it is just for "JoeBloggs@SomeEmail.com" meaning only one email you would like another specific email in CC, you CC expression could be
IF([Sendto] = "JoeBloggs@SomeEmail.com" ,"Jack@AnotherEmail.com", [CcTo])
It is not clear if you wish this expression for only one particular [SendTo] or there will always be some combination.
If it is just for "JoeBloggs@SomeEmail.com" meaning only one email you would like another specific email in CC, you CC expression could be
IF([Sendto] = "JoeBloggs@SomeEmail.com" ,"Jack@AnotherEmail.com", [CcTo])
Spot on @Suvrutt_Gurjar
If [Sendto] = "JoeBloggs@SomeEmail.com" then use "Jack@AnotherEmail.com" as the [CcTo] else CC to whoever has been selected
Thank You
User | Count |
---|---|
17 | |
14 | |
10 | |
7 | |
4 |