Skip to content

Commit

Permalink
Merge pull request #46 from lowdefy/fix-nodemailer-email-logo
Browse files Browse the repository at this point in the history
Fix broken logo height when viewing email in Outlook.
  • Loading branch information
SamTolmay authored Jul 12, 2024
2 parents c963681 + d105485 commit b2ba496
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/purple-seals-remain.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@lowdefy/community-plugin-nodemailer': patch
---

Fix broken logo height when viewing email in Outlook.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const defaultTemplate = `
<table align="center" width="100%" data-id="__react-email-container" role="presentation" cellSpacing="0" cellPadding="0" border="0" style="max-width:37.5em;margin:0 auto;padding:24px;margin-bottom:64px;text-align:center">
<tbody>
<tr style="width:100%">
<td><img data-id="react-email-img" alt="{{ templateVariables.appName or host }}" src="{{ theme.logo or 'https://lowdefy.com/logo-light-theme.png' }}" style="display:block;outline:none;border:none;text-decoration:none;height:{{ templateVariables.logoHeight or '32px' }}" />
<td><img data-id="react-email-img" alt="{{ templateVariables.appName or host }}" height="{{ (templateVariables.logoHeight or '32') | replace('px', '') }}" src="{{ theme.logo or 'https://lowdefy.com/logo-light-theme.png' }}" style="display:block;outline:none;border:none;text-decoration:none;height:{{ templateVariables.logoHeight or '32px' }}" />
<table align="center" width="100%" data-id="__react-email-container" role="presentation" cellSpacing="0" cellPadding="0" border="0" style="max-width:37.5em;background-color:#ffffff;margin:24px auto 12px auto;padding:16px;border:1px solid #dedede;border-radius:4px">
<tbody>
<tr style="width:100%">
Expand Down

0 comments on commit b2ba496

Please sign in to comment.