Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This will register the argument given for ‘to’ as the email address to which the confirmation mail will be sent. This contains “This is the email subject” as subject and “This is the email body" as the email body.

Example 2

Code Block
{% register_form_confirmation_field 
  subject: "This is an email forassign subject = "Confirmation subject {{ submitted_form_fields['name''] }}"  %}
{% register_form_confirmation_field 
  subject: subject,
  body: "This is the email body", 
  to: "example@email.com" 
%}

...