I have 2 forms on a website currently which are both configured exactly the same as far as I’m concerned. They both are set to send to 5 different emails on submission. One of the forms sends to all of the emails and the other one just sends to a default email. I have copied and pasted the 5 emails directly from the other form. Is there some sort of configuration which could have previously been added by the prior web developer which is overriding this?
]]>I would be very happy if you can help me.
I would like to specify a contact list as recipient in my Forminator form in the email notifications (over 200 contacts).
But currently you can only specify a limited number of recipients and you always have to specify them manually. Is there any way to enter a contact list from another plugin as a shortcode in the recipient list?
Or is there any other way to solve this problem, maybe with a php snippet?
Many thanks in advance and kind regards.
]]>Looking through the plugin’s code, it seems SendGrid’s Personalizations is used, but the plugin includes all the emails in one single Personalization, like this
{
"personalizations": [
{
"to": [
{
"email": "[email protected]"
},
{
"email": "[email protected]"
},
{
"email": "[email protected]"
}
],
"subject": "YOUR SUBJECT LINE GOES HERE"
}
]
}
I need them added as an individual Personalization for each email, like this
{
"personalizations": [
{
"to": [
{
"email": "[email protected]"
}
],
"subject": "YOUR SUBJECT LINE GOES HERE"
},
{
"to": [
{
"email": "[email protected]"
}
],
"subject": "YOUR SUBJECT LINE GOES HERE"
},
{
"to": [
{
"email": "[email protected]"
}
],
"subject": "YOUR SUBJECT LINE GOES HERE"
}
]
}
Is this possible with the most recent version of the plugin?
]]>What I want to do is send an email to subsets of registered site users and include each user’s name in the email body. The twist is that the subset of users is never the same, so I need to dynamically determine the correct name to pair with each recipient email in the list.
Is that possible with this plugin? If so, I’d be grateful for any documentation pointers that would get me started in the right direction.
Thanks
]]>Can you add this feature to the roadmap?
]]>In the Trigger->action()
method I need to collect all the addresses and set them as a class property which the merge_tags()
method can then access. However, currently I cannot use the EmailTag
because it won’t validate an array of addresses or a comma-delimited string.
How can I set up this notification so that it sends to all group members?
Thanks.
]]>I tried to hook in with woocommerce_email_recipient_new_order
and the recipient is already filtered as single at that point.
On WooCommerce 4.9.2 everything worked as expected, no changes have been made to the configuration, and the “Cancel Order” email correctly sends to multiple addresses, though with wp-mail-logging the addresses are separated by a newline (-> https://www.dropbox.com/s/avdxusvyt12aymf/Schermata%202021-02-23%20alle%2012.39.58.png?dl=0)
Any hint?
]]>