I have configured an HTML Pending Email Body as follows:
Code:
<p style="font-size: 42px; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: 400;">Welcome [NAME],</p>
<div style="width: 160px; border-top: 5px solid #ed2024; margin-top: -10px;"></div>
<p style="font-family: Verdana, Arial, Helvetica, sans-serif; line-height: 1.5; margin-bottom: 40px;">Thank you for joining the <b>XXXX</b> community, we’re excited to have you be a part of history! In order to complete your registration, please follow the link below to
verify your email address and activate your account.</p>
<p style="margin-bottom: 40px;"><a href="[CONFIRM]" style=" border-radius: 28px; border: 2px solid #ed2023; color: #ed2023; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 16px; padding: 16px 31px; text-decoration: none;">VERIFY YOUR ACCOUNT</a></p>
The email body I get back is:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-GB" lang="en-GB" dir="ltr">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
</head>
<body>
<p style="font-size: 42px; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: 400;">Welcome Ed,</p>
<div style="width: 160px; border-top: 5px solid #ed2024; margin-top: -10px;"></div>
<p style="font-family: Verdana, Arial, Helvetica, sans-serif; line-height: 1.5; margin-bottom: 40px;">Thank you for joining the <b>XXX Canada </b>community, we're excited to have you be a part of history! In order to complete your registration, please follow the link below to verify your email address and activate your account.</p>
<p style="margin-bottom: 40px;"><a href="<br />https://xxxxx.ca/cb-profile/confirm.html?confirmcode=regd417e17625e8b0660e34f7a4dbbc71950ae4b9c4<br />" style=" border-radius: 28px; border: 2px solid #ed2023; color: #ed2023; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 16px; padding: 16px 31px; text-decoration: none;">VERIFY YOUR ACCOUNT</a></p><br /><br />NOTE: This email was automatically generated from XXXX (https://xxxx.ca).
</body>
</html>
You will notice the <br /> is added before and after the CONFIRM URLs in the email, effectively disabling them.
Thoughts?