1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/resources/views/emails/confirm_text.blade.php
Christian González d30f14d5d3 don't escape confirmation mail templates.
This patch would fix at least a part of issue #381 and #420, if it would be applied to all necessary blade files.
This could be a security problem as user now maybe can enter malicious code? I am not smart enough to know these php internals.
2015-09-03 02:50:32 +02:00

8 lines
242 B
PHP

{!! trans('texts.confirmation_header') !!}
{!! $invitationMessage . trans('texts.confirmation_message') !!}
{!! URL::to("user/confirm/{$user->confirmation_code}") !!}
{!! trans('texts.email_signature') !!}
{!! trans('texts.email_from') !!}