Hi,
I’m trying to figure out whether this is a bug - can somebody reproduce, and / or tell me if I’m making the wrong assumptions?
Steps to reproduce
- Base with Third-Party Mail provider, Automation triggers mail
- Fixed values in the mail sending form in the automation: Works …
- … even with multiple recipients, comma-separated:
name1@domain1.com,name2@domain2.com
- … even with multiple recipients, comma-separated:
- Create a text field “mail”, write a single e-mail-address into it:
name1@domain1.com
- use
{mail}
in the automation for the recipients instead of a string literal: Works
- use
- Fill the “mail” field (column) with the same comma-separated list (
name1@domain1.com,name2@domain2.com
): Fails , no mail sent
For some reason, Seatable seems to mess up the comma-separated list of recipients when it’s coming from a table column / field, resulting in no mail being sent. When I include the {mail}
field into the subject or body part of the automation form, name1@domain1.com,name2@domain2.com
ends up exactly like this in the mail.
is it possible that seatable encodes / escaped some part (maybe the comma) in the substitution, and then doesn’t know how to use the list of recipients?