I'm using the default Form block for a simple contact form. But, instead of the email always coming from the same (admin) email, I would like to have it dynamically pull the email provided by the user filling in the contact form. Would this be very hard? I'm already asking for their email...I just need to grab that response and set it as the "From" field when the email is sent. Thanks!
See http://www.concrete5.org/documentation/how-tos/developers/add-ability-in-contact-form-to-reply-to-the-submitter/
UPDATE: Above link is broken, you can find the how-to here: https://legacy-documentation.concrete5.org/tutorials/add-ability-in-contact-form-to-reply-to-the-submitter
Related
In the email sent after the user fills out the form, I want the "From:" field to be filled with the user's entered data, ie: a "pretty printed" email address in of the form ["Johnny Appleseed" jhonny#apple.com]. currently it will only fill the From: field with my own address. I do NOT want to use the "Reply-to:" field.
Please let's not talk about why i should not do this, just help me achieve my goal if you can, thanks!
i learned that if you enable "Dev Mode", then these fields become available.
I am trying to figure out if it is possible to customise firebase email templates at html level. In my dashboard the field seems to be there
But is not editable. I am using their free tier at the moment, will this become editable if I upgrade to paid plan? Can I request this field to become editable somehow?
Right now setting up deep/universal links results in a really really long bad looking url sent to user, it would be great if it could be custumised i.e. put under certain button.
There are the three email templates:
Email password verification
password reset
email address change
Password reset, text can be changed please see the image below:
The other two options, the text cannot be changed to prevent spam (as it says if you hover the mouse on the question mark)
i have a pretty difficult question here:
Is it possible to PRE - insert the email address in the corresponding email input from a GET request into the default wordpress form?
Here is a detailed reference how to customize the WordPress login form https://codex.wordpress.org/Customizing_the_Login_Form
Basically you can customize almost every aspect of the login form in terms of HTML.
If you want a quick solution without modifying code, you can register an additional Javascript that can read the URL query parameters from window.location.href and append it as email/username field placeholder/value attribute.
Here is a topic how to read URL GET parameters with Javascript How can I get query string values in JavaScript?
I need to create a quiz contest on a WordPress site. The visitor will fill his/her name, phone, email and facebook id and answer two questions. I need to view and later use the data submitted in the form. Also A thanks message will automatically go to the visitor's email after submitting the form.
Can anyone please guide me how can I accomplish this? Which plugin can be used to fulfill the requirement?
Any guidance will be much appreciated.
Thanks
Placid
I would suggest using Contact Form 7 (https://wordpress.org/plugins/contact-form-7/) to build the form, and then Contact Form DB (https://wordpress.org/plugins/contact-form-7-to-database-extension/) to view data in the backend.
I use Contact Form 7 for my wordpress forms. It is free and vary flexible. Make sure you read some tutorials before using if you are not comfortable with some basic HTML.
There is a section called "Mail 2" that would allow you to send the thank you email to the user, and still have the form info that they entered be sent to you.
Link to the plugin - https://wordpress.org/plugins/contact-form-7/
Good luck!
I'm using Drupal 7. I can't find out how to send mail to email field in specific content type content created. like, someone create content and fill out email field in that content, then site should send email notification to that email field. Is it possible? I've research Rules but with Rules basic function can't do this.
I am sure this can be done using rule, you just need to use the replacement pattern there in rules action, all the fields value are available there like [node:title] for title of the node and [node:body] for the body of the node, similarly something must be avaiable for your email field, you just need to put that replacement string in the "To value" in rules action.
Hope it helps.
if i am right, you want to send an email if new content was created?
I don't have experience with "Rules" but you could build your own custom module for that.
You only need to hook into all events you might need for that.
For example:
hook_insert: Respond to creation of a new node
This requires basic understanding of Drupal Module System.
Complete List of Hooks: http://api.drupal.org/api/drupal/includes!module.inc/group/hooks/7
Module developer's guide: http://drupal.org/developing/modules
Greetings.