Share all details about your problem, including any error messages you may have received.
I’m attempting to write some VTL code in an Email Template that will not send an email depending on the user it’s being sent to. I’ve done something similar in ISC, but attempting to do the same thing in IIQ has thrown me for a loop. I have some pseudocode of what I’m trying to do below.
Any suggestions would be greatly appreciated!
Pseudocode:
if (identity == JohnSmith)
{
return; // Don't send email and do nothing!
}
else
{
SendEmail(); // Send email as usual
}
I’m attempting to block a certification email from going out to a certain individual since we take care of the approval process of this individual ourselves. If this can’t be done from the template, do you know what Workflow I could potentially look into to add this logic?
Could you avoid having that user in the certification by excluding them using a rule? If you know they are an exception, then you wouldn’t even need to process them.
Trying to come up with a plan b. To satisfy your audit, could you have a separate targeted certification for those excluded users without a notification configured? That way you could justify “completeness” done with two certification campaigns.
Yeah, I was thinking something similar to that. Specifically, schedule a certification without notifications configured and potentially run a rule or manually notify each manager (skipping the one we don’t want to be notified).
Have you heard of a rule that can utilize the “Email Certifiers” button? I believe a rule that can use that button with a check to make sure we don’t use it for the user I want to skip would be exactly what I’m looking for.