-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Just fixes a few oddities with the readme and also updates the email template to match the style of the existing ones in FOSSBilling.
- Loading branch information
1 parent
55eee70
commit e495584
Showing
2 changed files
with
45 additions
and
14 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
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,43 @@ | ||
{% block subject %}Example Email Subject{% endblock %} | ||
{% block content %} | ||
{% apply markdown %} | ||
Hi {{ c.first_name }}, | ||
|
||
This is a test message from fossbilling.org | ||
|
||
{{ guest.system_company.signature }} | ||
|
||
{% endapply %} | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<style type="text/css"> | ||
body { | ||
font-family: Arial, sans-serif; | ||
font-size: 14px; | ||
color: #333333; | ||
} | ||
h1 { | ||
font-size: 24px; | ||
font-weight: bold; | ||
margin: 0 0 20px; | ||
} | ||
p { | ||
margin: 0 0 10px; | ||
} | ||
strong { | ||
font-weight: bold; | ||
} | ||
.signature { | ||
font-style: italic; | ||
color: #999999; | ||
margin-top: 20px; | ||
border-top: 1px solid #cccccc; | ||
padding-top: 10px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<p>Hi {{ c.first_name }},</p> | ||
<p>This is a test message from <a href="fossbilling.org">fossbilling.org</a></p> | ||
<p class="signature">{{ guest.system_company.signature }}</p> | ||
</body> | ||
</html> | ||
{% endblock %} |