I have a problem when I use doc2form for generate form. The system always send email from sender account:[email protected] and cannot get data from input field.
example I have 1 textbox for input email, In Editor in put email format Email : [email]. when I submit it should show Email :[{value from input text}] but it shown me Email : [email] . Have anyone has any idea?
The sender problem is because you haven't updated the umbracoSettings.config - Change the <notifications><email> section to be whatever email you want it to be from.
Here's a pretty easy solution to do what I bleieve you're going for, that is, to REPLY TO the SENDER of the e-mail instead of your own preset e-mail address. Here are the steps that worked for me today!
In the Doc2Form - Complete Macro (or whichever Macro you are using)
Add a Parameter called FormReplyToEmailAddress.
Make up any Name to go with it.
For the Type dropdown, select propertyTypePicker.
Check the box on the left. Save
Then, go to the template that you inserted the Macro into: Add FormReplyToEmailAddress="[Email]" into the Macro code. NOTE: Email = whatever you named your e-mail address alias on your Contact Form doc type.
Mail send from [email protected]
I have a problem when I use doc2form for generate form. The system always send email from sender account:[email protected] and cannot get data from input field.
example I have 1 textbox for input email, In Editor in put email format Email : [email]. when I submit it should show Email :[{value from input text}] but it shown me Email : [email] . Have anyone has any idea?
Best Regards,
Alex
The sender problem is because you haven't updated the umbracoSettings.config - Change the <notifications><email> section to be whatever email you want it to be from.
As I know I can configure sender email from doc2form property title "Address to send a copy of Message text to submitter?". Is that correct?
Hi Endlessest
I believe in Doc2Form its "Email address to send form and results FROM?"
Dan
Here's a pretty easy solution to do what I bleieve you're going for, that is, to REPLY TO the SENDER of the e-mail instead of your own preset e-mail address. Here are the steps that worked for me today!
In the Doc2Form - Complete Macro (or whichever Macro you are using)
Save
Then, go to the template that you inserted the Macro into:
Add FormReplyToEmailAddress="[Email]" into the Macro code. NOTE: Email = whatever you named your e-mail address alias on your Contact Form doc type.
is working on a reply...