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' ? 'jack@example.com' : 'jan@example.com'
})
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
-
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