-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from privacybydesign/feat/make-mail-less-likel…
…y-to-be-seen-as-junk Feat: Make mail less likely to be seen as juink
- Loading branch information
Showing
3 changed files
with
18 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
|
@@ -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", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |