Skip to content

Commit

Permalink
Feat: Make mail less likely to be seen as juink
Browse files Browse the repository at this point in the history
  • Loading branch information
Sander Hollaar committed Aug 22, 2022
1 parent e6803dc commit e58e90c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 20 deletions.
4 changes: 2 additions & 2 deletions src/main/resources/config.sample.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"verify_email_subject": {
"en": "Add email address to your IRMA app",
"nl": "Voeg e-mailadres toe aan uw IRMA app"
"nl": "Voeg e-mailadres toe aan je IRMA app"
},
"server_url": {
"en": "http://localhost:8080/irma_email_issuer",
Expand All @@ -11,7 +11,7 @@
"mail_port": 25,
"mail_user": "",
"mail_password": "",
"mail_from_address": "[email protected]",
"mail_from_address": "IRMA Email Issuer <[email protected]>",
"secret_key": "",
"token_validity": 86400,
"private_key_path": "sk.der",
Expand Down
17 changes: 8 additions & 9 deletions src/main/resources/email-en.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
<html>
<body style="font-family: Arial, Helvetica, sans-serif; font-size: 16px; line-height: 22px;">
<div style="font-family: Arial, Helvetica, sans-serif; font-size: 16px; line-height: 22px;">
<p>Click the following link to add your email address to your IRMA app.</p>

<div>
<a href="%s">Load email address attribute</a>
</div>
</div>
</body>
<body style="font-family: Arial, Helvetica, sans-serif; font-size: 16px; line-height: 22px;">
<div>
<p>Click the following link to add your email address to your IRMA app.</p>
<div>
<a href="%s">Load email address attribute</a>
</div>
</div>
</body>
</html>
17 changes: 8 additions & 9 deletions src/main/resources/email-nl.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
<html>
<body style="font-family: Arial, Helvetica, sans-serif; font-size: 16px; line-height: 22px;">
<div style="font-family: Arial, Helvetica, sans-serif; font-size: 16px; line-height: 22px;">
<p>Klik op onderstaande link om uw e-mailadres toe te voegen aan uw IRMA app.</p>

<div>
<a href="%s">Laad e-mailadres attribuut</a>
</div>
</div>
</body>
<body style="font-family: Arial, Helvetica, sans-serif; font-size: 16px; line-height: 22px;">
<div>
<p>Klik op onderstaande link om je e-mailadres toe te voegen aan je IRMA app.</p>
<div>
<a href="%s">Laad e-mailadres attribuut</a>
</div>
</div>
</body>
</html>

0 comments on commit e58e90c

Please sign in to comment.