Hello,
When we are using the [CONFIRM] tag in an HTML email then the URL is surrounded by linebreaks, breaking the HTML flow. WIth some email clients it leads to the problem that the confirmation link is not clickable
Our HTML code set in confirmation email settings:
<a href="[CONFIRM]" class="btn-primary" style="line-height: 22px; margin: 0; box-sizing: border-box; font-family: 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif; color: #ffffff; font-size: 18px; padding: 20px; display: block; font-weight: bold; background: #358739; border-radius: 3px; text-decoration: none; text-align: center;">Click here to confirm email address</a>
Expected output
<a href="
www.domain.org/index.php?confirmcode=reg119b0f338baeb114e717c243a0a37b06caf2e2&Itemid=126
" class="btn-primary" style="line-height: 22px; margin: 0; box-sizing: border-box; font-family: 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif; color: #ffffff; font-size: 18px; padding: 20px; display: block; font-weight: bold; background: #358739; border-radius: 3px; text-decoration: none; text-align: center;">Click here to confirm email address</a>
Actual output
<a href="
www.domain.org/index.php?confirmcode=reg119b0f338baeb114e717c243a0a37b06caf2e2&Itemid=126
" class="btn-primary" style="line-height: 22px; margin: 0; box-sizing: border-box; font-family: 'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif; color: #ffffff; font-size: 18px; padding: 20px; display: block; font-weight: bold; background: #358739; border-radius: 3px; text-decoration: none; text-align: center;">Click here to confirm email address</a>
Note the line break before and after the URL but within the surrounding quotes.
Thank you
Carsten