Skip to content

Commit

Permalink
pass data to email channel and store double-opt-in main data in mail …
Browse files Browse the repository at this point in the history
…params, resolves #479
  • Loading branch information
solverat committed Sep 17, 2024
1 parent dc62c4d commit 296ed14
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions templates/email/form_data.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,23 @@
{% endif %}
{% endif %}
{% endfor %}
{#
[DOUBLE-OPT-IN]
If you want to show double opt in session values, uncomment this section
available fields:
- double_opt_in_session.email
- double_opt_in_session.token
- double_opt_in_session.creation_date
- double_opt_in_session.additional_data
#}
{#
{% if double_opt_in_session is defined and double_opt_in_session is not null %}
<tr>
<td width="50%" valign="top" align="left"><strong>Double-Opt-In-Email:</strong></td>
<td width="50%" valign="top" align="left">{{ double_opt_in_session.email }}</td>
</tr>
{% endif %}
#}
</tbody>
</table>

0 comments on commit 296ed14

Please sign in to comment.