Add config
This commit is contained in:
32
resources/templates/emails/contact.html
Normal file
32
resources/templates/emails/contact.html
Normal file
@ -0,0 +1,32 @@
|
||||
{% extends "layouts/base.html" %}
|
||||
|
||||
{% block subject %}
|
||||
{{ subject }}
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<p>
|
||||
<strong>Name:</strong>
|
||||
</p>
|
||||
<p>
|
||||
{{ name }}
|
||||
</p>
|
||||
<p>
|
||||
<strong>Email:</strong>
|
||||
</p>
|
||||
<p>
|
||||
{{ email }}
|
||||
</p>
|
||||
<p>
|
||||
<strong>Subject:</strong>
|
||||
</p>
|
||||
<p>
|
||||
{{ subject }}
|
||||
</p>
|
||||
<p>
|
||||
<strong>Message:</strong>
|
||||
</p>
|
||||
<p>
|
||||
{{ message }}
|
||||
</p>
|
||||
{% endblock %}
|
7
resources/templates/emails/contact.txt
Normal file
7
resources/templates/emails/contact.txt
Normal file
@ -0,0 +1,7 @@
|
||||
Name: {{ name }}
|
||||
|
||||
Email: {{ email }}
|
||||
|
||||
Subject: {{ subject }}
|
||||
|
||||
Message: {{ message }}
|
Reference in New Issue
Block a user