Announcement

Collapse
No announcement yet.

auto assign team when sent e-mail from a group e-mail account

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • auto assign team when sent e-mail from a group e-mail account

    I need to auto assign a specific team (to e-mail) when a user sents a e-mail from a group e-mail account.
    Is that possible?
    Maybe from formula?
    Thanks.

  • #2
    Hello.
    You can try to use workflow for it.

    Comment


    • #3
      I'm not in advanced pack, so workflow is not an option.
      Thanks.

      Comment


      • #4
        Code:
        ifThen(
            fromAddress == 'yourGroupEmailAddress' && status == 'Sent', 
            entity\addLinkMultipleId('teams', '5cde74469540dc3fc')
        )

        Comment


        • #5
          It works!
          Thanks Maximus !

          Comment

          Working...
          X