Merge pull request #5537 from freesewing/joost
fix(backend): Don't escape URLs. See #5516
This commit is contained in:
commit
8cdaa49870
1 changed files with 5 additions and 5 deletions
|
@ -5,7 +5,7 @@ export const buttonRow = {
|
||||||
<table class="sm-w-full sm-mx-auto" border="0" cellpadding="0" cellspacing="0" role="presentation">
|
<table class="sm-w-full sm-mx-auto" border="0" cellpadding="0" cellspacing="0" role="presentation">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center" class="hover-bg-blue-600" style="border-radius: 2px; background-color: #262626">
|
<td align="center" class="hover-bg-blue-600" style="border-radius: 2px; background-color: #262626">
|
||||||
<a href="{{ actionUrl}}" target="_blank" class="sm-block sm-p-15px sm-border-0" style="text-decoration: none; border: 1px solid #000; display: inline-block; border-radius: 2px; padding: 15px 25px; font-size: 16px; font-weight: 700; color: #fff">{{ button }} →</a>
|
<a href="{{{ actionUrl }}}" target="_blank" class="sm-block sm-p-15px sm-border-0" style="text-decoration: none; border: 1px solid #000; display: inline-block; border-radius: 2px; padding: 15px 25px; font-size: 16px; font-weight: 700; color: #fff">{{ button }} →</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
@ -26,7 +26,7 @@ export const closingRow = {
|
||||||
joost
|
joost
|
||||||
<br><br>
|
<br><br>
|
||||||
PS: {{{ ps-pre-link}}}
|
PS: {{{ ps-pre-link}}}
|
||||||
<a href="{{ supportUrl }}" target="_blank" style="text-decoration: underline; color: #262626">
|
<a href="{{{ supportUrl }}}" target="_blank" style="text-decoration: underline; color: #262626">
|
||||||
<b>{{{ ps-link}}}</b>
|
<b>{{{ ps-link}}}</b>
|
||||||
</a> {{{ ps-post-link }}}
|
</a> {{{ ps-post-link }}}
|
||||||
</p>
|
</p>
|
||||||
|
@ -83,7 +83,7 @@ export const lead1Row = {
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left" class="sm-p-15px" style="padding-top: 15px">
|
<td align="left" class="sm-p-15px" style="padding-top: 15px">
|
||||||
<p style="margin: 0; font-size: 16px; line-height: 25px; color: #262626">
|
<p style="margin: 0; font-size: 16px; line-height: 25px; color: #262626">
|
||||||
<a href="{{ actionUrl }}" target="_blank" style="text-decoration: none; color: #262626">
|
<a href="{{{ actionUrl }}}" target="_blank" style="text-decoration: none; color: #262626">
|
||||||
<b>{{{ lead }}}</b>
|
<b>{{{ lead }}}</b>
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
@ -101,7 +101,7 @@ export const preLeadRow = {
|
||||||
<p style="margin: 0; font-size: 16px; line-height: 25px; color: #262626">
|
<p style="margin: 0; font-size: 16px; line-height: 25px; color: #262626">
|
||||||
{{{ preLead }}}
|
{{{ preLead }}}
|
||||||
<br><br>
|
<br><br>
|
||||||
<a href="{{ actionUrl }}" target="_blank" style="text-decoration: none; color: #262626">
|
<a href="{{{ actionUrl }}}" target="_blank" style="text-decoration: none; color: #262626">
|
||||||
<b>{{{ lead }}}</b>
|
<b>{{{ lead }}}</b>
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
@ -234,7 +234,7 @@ export const wrap = {
|
||||||
{{ notMarketing }}
|
{{ notMarketing }}
|
||||||
<br>
|
<br>
|
||||||
{{ seeWhy }}
|
{{ seeWhy }}
|
||||||
<a href="{{ urlWhy }}" target="_blank" style="text-decoration: underline; color: #868e96">{{ whyDidIGetThis }}</a>
|
<a href="{{{ urlWhy }}}" target="_blank" style="text-decoration: underline; color: #868e96">{{ whyDidIGetThis }}</a>
|
||||||
<br>
|
<br>
|
||||||
<br>
|
<br>
|
||||||
FreeSewing
|
FreeSewing
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue