Form Builder with relation to User Email #9927
Unanswered
maxkarkowski
asked this question in
Q&A
Replies: 1 comment 1 reply
-
You can use the Form Builder Plugin. You have two options.
beforeEmail: (emailsToSend, beforeChangeParams) => {
const { data } = beforeChangeParams
emailsToSend.forEach((email) => {
email.cc = data.course === 'beginner' ? '[email protected]' : '[email protected]'
})
return emailsToSend
}, |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hey, i am not quite sure if it is the right place. i want to build a Course Collection and for each course you can send a form.
The form should always be send to the website admin but also to an organier email which is related to a single Course. The form itself is always the same for each course(name, mail, textarea) but the organizers changes for each course
Beta Was this translation helpful? Give feedback.
All reactions