Try to customize a contact 7 form so that the email goes out to different email address based on the values selected from the dropdowns. I'm not a programmer, just someone at home trying to build a website. Can someone help me with the code or point me towards it?
Customizing a contact 7 form so email address sent to is based on variables chosen
116 views Asked by cberry1224 At
2
There are 2 answers
0
Atif Tariq
On
Please use the following code in form box,
[select your-recipient "CEO|[email protected]"
"Sales|[email protected]"
"Support|[email protected]"]
Then add the tag to mail "TO" filed, [your-recipient]
Related Questions in EMAIL
- Email Verification python eror
- Invalid format for email address in WordPress on Azure app service
- How to create an JSOUP element from byte array image (Load from Database)
- How can I look this email address
- Gsheet - Automatically send an email using a date & time in a Cell
- Install Postfix Mail Server
- Error 553 5.7.2 [TSS09] When Sending Emails to Yahoo and Outlook
- How to make my form send the submitted info to my email
- Cpanel filter encoding utf-8?
- Thunderbird Importing Emails imports 0 emails
- Python & Django web app - auto emails not sending
- Allowing any member of a dynamic group to send as from a shared mailbox
- How to fix "search in state AUTH" errror
- Rewriting CSS in MSO conditional comment doesn't work
- Sendgrid attachments in C#
Related Questions in MULTI-SELECT
- Having trouble with EF Core / ASP.NET Core MVC MultiSelectList selectedItems
- SwiftUI - List multi selection move / reorder (works on Mac but not on iOS)
- infinite scroll of primereact multiselect
- How to Implement Multi-Parameter Queries in SSRS Report Builder with Databricks ODBC?
- How to create skills multi-select feild in my own flutter app like linkedin skills field
- Power BI slicer dropdown with array values
- Getting the value from a multi-select list PHP in Drupal site
- Want to close a drop down menu in multi_select
- Resizing and Rotating multiple selected elements / objects
- How to store ids in an array in laravel
- davidstutz Multiselect: options not passed
- Razor Views and Javascript : Append to multiSelect not working
- Is there a way I can get these 2 dropdowns to "work together" to filter the table
- Cant Figure out what goes wrong in model binding ASP.NET Core + Razor Pages
- i am getting some design issue in flutter multiselect
Related Questions in CONTACT-FORM
- How to add default text in output to filled fields in Contact Form 7
- How to submit Contact Form 7 programatically
- How to add different timing based on the day it is for a Reservation system in Contact Form 7 WordPress
- ActionController::ParameterMissing in StaticPagesController#contact (Ruby on Rails 6)
- Add event listener at the end of a contact form to track conversions (Google Tag Manager)
- Adding a reply email to a contact form using Bootstrap
- Captcha integration issues to contact form
- My PHP/JS contact form is not doing anything when I click send
- Contact form submitted but I don't receive any email :(
- Adding an Image Icon into an Input Box that Selects the Input Box when Clicked
- Form submission returns blank page
- PHP contact form on my website no longer working as intended after migrating from IONIS to Hostinger
- Creating a Shopify app which creates a contact form with shortcode and sends the values to the app backend
- POST request redirects to php file
- Error: Form submission failed and no error message returned from: contact.php
Related Questions in CONTACT-FORM-7
- How to add default text in output to filled fields in Contact Form 7
- How to add different timing based on the day it is for a Reservation system in Contact Form 7 WordPress
- Contact Form 7 v7.5.9.3 is not working correctly
- Wordpress 2024: ContactForm7 sending user to a php page with POST values
- How to make a div button to link to another web page
- rename name in contact from 7 before submit
- Show and Hide DIV's after 5000 seconds when .wpcf7-mail-sent-ok
- Populate CPT meta data with Contact Form
- how to stop a popup form from preloading on any random click in the wordpress site?
- Contact form "Undefined value was submitted through this field."
- Contact form 7: I want to run PHP code after submitting. Is it possible?
- Change font family for input type submit
- Text* Validation - Contact Form 7
- Contact Form 7 issue submitting form, AJAX not working
- Contact from 7 API integration + data layer
Related Questions in CUSTOMIZING
- Customizing Divi Blog module for ACF
- create modules and directories by custom spring initializer
- CSS scrollbar-gutter
- Module "ag-grid-angular" has no exported member 'AgGridThemeOverrideService'
- How to customise alert events in Firebase Crashlytics
- How to make a JFileChooser with a different language?
- Customized ID in PostgreSQL using the user's input
- How can I rename builtin functions e.g "if" -> "hehe", "elif" -> "haha", "else" -> "hihi"?
- vuetify.js doesn't working in Vue 3 (theme customzing)
- Overwrite a function in a python library
- Is it possible to change the default flags in tmux window-format?
- Migration of custom Module from Odoo 13 to 15
- Odoo Customizing : Many2one field in contacts view, which shows only the Individuals of the currently displayed Company
- How to customize file_picker UI in flutter
- How to customixe React-Native verification Code
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
I'm not sure you can solve this without a bit of programming.
However I think if you want to do as little programming as possible, I'd set up as many identical contact forms as many email addresses you want to possibly send to..
After this you could write a little bit of JavaScript that changes the
actionattribute of the form element to the desired contact form when someone selects a specific option from a dropdown so that when they click submit,their data is sent to the form which emails the correct person.This approach is probably not as nice as having 1 form and then writing some php to sort it out who it sends to but it requires less code and is less likely to break your site if it goes wrong.