Developer forum

Forum » CMS - Standard features » Mail formular
Jakob Kristensen
Reply

Hello Dynamicweb & friends!

I am doing a mail template with the 'formular for redakører' module and have an issue displaying text, coming from the formular.

Currently the template fetches it by  string text = GetString("Submit.MailText");

 

But this text is never shown in the email formular when its sent to our smtp server?

 

Am i calling the wrong name, i was using the standard mail template, my project leader tells me it has happened before this text doesnt show up, any ideas how this can happen, and where would i find documentation on this module which tags to use etc. there was some documentation on the module but not the specific implementations.

Template code:

Cheers!


Replies

 
Nicolai Pedersen
Reply
This post has been marked as an answer

Hi Jakob

The tag documentation can be found here: https://doc.dynamicweb.com/template-tags/content/forms-for-editors/email

The usage can be found here: https://doc.dynamicweb.com/documentation-9/content/apps/forms-for-editors

The receipt (to the user coming filling out the form) text comes from

string text = GetString("Submit.ReceiptText");

The mail (to the owner of the website) text comes from

string text = GetString("Submit.MailText");

BR Nicolai

Votes for this answer: 1
 
Jakob Kristensen
Reply

Thank you for your help :)

 

You must be logged in to post in the forum