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
112 Views Asked by cberry1224 At
2
There are 2 best solutions below
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
- how to send email from localhost using codeigniter?
- PowerShell EWS Save as for e-mails
- I want to develop an automated email application in asp.net with c#
- Not able to send email in java using SMTP,its blocked by firewall in my office.Is there any other method by which we can send mail?
- Postfix - cannot connect to server to receive email
- PHPMailer send mail with array ( $_POST['email'] )
- Could Not Instantiate Mail Function - PHPMailer - With Attachments - Only Google Chrome
- encrypted email with entrust certificate is not opening with MS Outlook
- Disconnect Client connected to cgi application
- send a message using freemarker
- Using advanced ccs icons in email signatures
- How can I fetch emails on Android?
- Issue with email form and php script
- HTML Control Form with PHP - Errors
- javax.mail.getValidSentAddresses()
Related Questions in MULTI-SELECT
- Can i create SelectedItems Property for multiselect combobox
- ListBox with multiselect property loses selected items
- Yii2 - Grid multi select filter not working
- Multiselect filter is not working with jqgrid 4.8.2
- How to double click an option in a multi select using Selenium and Python
- Most efficient way of writing multi-select data to a SQL Server backend
- Not getting id in from the selected values in multi-select list box Angular JS
- DataGridView KeyDown manipulation (enter, left, right, etc.) not working when multiselect
- Use jQuery to check for number of options NOT selected in a multiselect
- Atom editor - multiselect by line
- AngularJS multi select checkboxes saves in comma separated String
- Tagging in ui-select (angular-ui) mulitselect
- jQuery MultiSelect Plugin SumoSelect not binding to multiple instances on single page
- Multiselect filtering a paged view in ASP.Net MVC
- Adding values dynamically to a MultiSelect in DOJO
Related Questions in CONTACT-FORM
- Height of input box on Contact 7 form
- Contact Form fails to send out an email
- How to add action for custom form in wordpress?
- Why doesn't this PHP code send e-mails?
- Error in Contact form
- php help redirect contact form to thank you page
- Codeigniter PHP Mailer, Sender Info
- PHP script not validating input
- PHP contact form with nocaptca recaptcha
- Contact form with html and php
- Customizing a contact 7 form so email address sent to is based on variables chosen
- PHP contact form goes to a blank page
- How do I configure my "leave a message" form with MailChimp on an HTML/CSS template?
- Contact Form using Gmail SMTP server C# ASP.NET. UPDATED CODE?
- Formspree: error message | Can't send an empty form
Related Questions in CONTACT-FORM-7
- Contact form 7 sending to wrong email (wordpress)
- Running a custom function if Contact Form 7 returns an invalid field on AJAX submit
- Delaying a Javascript code snipped for a specific amount of time in one line
- Contact Form 7 SMS integration with twilio
- How can I send Contact Form 7 data as search input to another website?
- How can I remove unit tag from URL in contact form 7 plugin
- After click on send button of Contact Form 7 plugin, it's whole page is refreshing and goes to top of the page but I want to reload contact form only
- I have a issue in loading of contact form 7 in wordpress site
- sending mail after payment paypal contact form 7
- Contact form 7 error on submit
- Customizing a contact 7 form so email address sent to is based on variables chosen
- Before mail sending validate contact from 7
- Change Contact Form 7 "SUBMIT" text with animated gif AFTER clicked
- close easy fancy box pop and show successful message as alert using contact form 7
- include() working on localhost but not on live website
Related Questions in CUSTOMIZING
- How can i create my own editText with customised validation types?
- Customizing a contact 7 form so email address sent to is based on variables chosen
- custom Toast at screen top
- VS 2010 - is there a way to implement a pop-context button, similar to what was available in vs 6
- how to provide background image of RAPHAEL bar graph
- How to customize Gmap?
- CSS scrollbar-gutter
- create modules and directories by custom spring initializer
- Override default vue-formulate snow.scss theme
- How do I customize my wordpress blog have darker fonts? Right now I'm using a good theme, except for that
- Overwrite a function in a python library
- change the expiry date of cookies in websphere commerce
- jQuery cycle plugin customizing
- How do I get the WordPress sidebar to show up on a post's detail page?
- Can I import a custom Google Map into iOS MapKit?
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)
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?
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.