The following warnings occurred: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Undefined array key "avatartype" - Line: 783 - File: global.php PHP 8.1.28 (Linux)
|
How to implement {$ANSWER_email} in Reply-To field in EDIT EMAIL TEMPLATE page - Printable Version +- Form Tools (https://forums.formtools.org) +-- Forum: Form Tools (https://forums.formtools.org/forumdisplay.php?fid=1) +--- Forum: General Discussion (https://forums.formtools.org/forumdisplay.php?fid=5) +--- Thread: How to implement {$ANSWER_email} in Reply-To field in EDIT EMAIL TEMPLATE page (/showthread.php?tid=2455) |
How to implement {$ANSWER_email} in Reply-To field in EDIT EMAIL TEMPLATE page - LetsFly - Jun 10th, 2013 Hello FormToolers, I have everything set up and running the way I like it, but there's just one thing I can't figure out. On the EDIT EMAIL TEMPLATE page, I would like to make the reply-to email address return the value of the email field in my form. That way I can simply hit reply to each form. When I try to add {$ANSWER_email} into the Reply-To field I get the error: • Please enter a valid custom 'From' email address. • Please enter a valid custom 'Reply-to' email address. I realize that it is validating the field, and {$ANSWER_email} does not look like an email address... yet. Can I override this? Is there a work around for this? Thanks, Tom RE: How to implement {$ANSWER_email} in Reply-To field in EDIT EMAIL TEMPLATE page - Joe - Jun 11th, 2013 Hi Tom, To do this you will actually need to map the email. - Go to your form and edit - Click Email tab and click Edit icon next to email you need to edit - Click the Recipients tab - At the top click through and follow the prompts to map your emails here: "Click here to specify which form fields are email fields, so you can target them in your email templates." - Once mapped there will be an additional option in the drop down for the reply to to choose Form Field Email, please choose that option Cheers, Joe RE: How to implement {$ANSWER_email} in Reply-To field in EDIT EMAIL TEMPLATE page - LetsFly - Jun 12th, 2013 Hi Joe, Thank you very much for the walk through. It worked like a charm. Have a great day, Tom RE: How to implement {$ANSWER_email} in Reply-To field in EDIT EMAIL TEMPLATE page - Joe - Jun 18th, 2013 No problem Tom. Happy to help. Cheers, Joe RE: How to implement {$ANSWER_email} in Reply-To field in EDIT EMAIL TEMPLATE page - MalcolmPaulson - Sep 27th, 2020 An archive of the tools and all position is judged for the mixing of the goals for the field. Plant of the teams and essaywriter.org are assumed for the turns for the chunks. The plant is filed for the help of the quite good items for the citizens. RE: How to implement {$ANSWER_email} in Reply-To field in EDIT EMAIL TEMPLATE page - janeu361 - Feb 24th, 2021 no need to enter a value in field FROM, see the code : 'email_from': fields.char('From', help="Sender address (placeholders may be used here). If not set, the default " "value will be the author's email alias if configured, or email address."), Here is how you do it in XML: <record id="yourdirectory.yourprefered_id" model="mail.template"> <field name="email_from">info@yourcompany.com</field> <field name="reply_to">info@yourcompany.com</field> <field name="email_to">${object.model_field_representing_email}</field> <field name="subject">bla bla bla</field> ... </record> I made many websites as a coder and I was also a part of a well-named agency that makes websites worldwide. For more queries please leave a message for me here or just hit the key fob website and I'll answer you within 24 hours. I hope that this answer is enough to make the changes. RE: How to implement {$ANSWER_email} in Reply-To field in EDIT EMAIL TEMPLATE page - olivia858 - Feb 28th, 2021 (Feb 24th, 2021, 2:45 PM) pid=\39861' Wrote:no need to enter a value in field FROM, see the code : |