Skip to content

Commit

Permalink
Feature: image url for email (#11)
Browse files Browse the repository at this point in the history
* add images folder

* fix: remove .idea folder, add it to gitignore

* feat: add image for logo

* feat: add url for images

* fix: remove relative urls
  • Loading branch information
theprogrammerinyou authored Jan 19, 2025
1 parent 6123b5e commit 79711fb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions templates/rsvp/Verify.html
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
<td>
<img
alt="Team shiksha logo"
src="../../images/logo.png"
src="https://raw.githubusercontent.com/TeamShiksha/email-service/refs/heads/main/images/logo.png"
class="logo"
width="100"
height="50"
Expand All @@ -135,7 +135,7 @@
<tr>
<td>
<img
src="../../images/verification-img.png"
src="https://raw.githubusercontent.com/TeamShiksha/email-service/refs/heads/main/images/verification-img.png"
class="verification-image"
/>
<p class="heading">Hi</p>
Expand Down
4 changes: 2 additions & 2 deletions templates/rsvp/ticket.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<td>
<img
alt="Team shiksha logo"
src="/images/logo.png"
src="https://raw.githubusercontent.com/TeamShiksha/email-service/refs/heads/main/images/logo.png"
class="logo"
width="100"
height="50"
Expand All @@ -136,7 +136,7 @@
<tr>
<td>
<img
src="/images/verification-img.png"
src="https://raw.githubusercontent.com/TeamShiksha/email-service/refs/heads/main/images/verification-img.png"
class="verification-image"
/>
<p class="heading">Hi {{name}},</p>
Expand Down
4 changes: 2 additions & 2 deletions templates/rsvp/update.html
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
<td>
<img
alt="Team shiksha logo"
src="cid:logo.png"
src="https://raw.githubusercontent.com/TeamShiksha/email-service/refs/heads/main/images/logo.png"
class="logo"
/>
</td>
Expand All @@ -155,7 +155,7 @@
<tr>
<td>
<img
src="cid:verification-email.png"
src="https://raw.githubusercontent.com/TeamShiksha/email-service/refs/heads/main/images/verification-img.png"
class="verification-image"
/>
<p class="text">
Expand Down

0 comments on commit 79711fb

Please sign in to comment.