71 lines
1.7 KiB
Plaintext
71 lines
1.7 KiB
Plaintext
@model Amen.Models.PrayerEmailViewModel
|
|
|
|
@{
|
|
Layout = "";
|
|
}
|
|
|
|
<html>
|
|
<head>
|
|
<title>@Model.Subject</title>
|
|
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Source+Sans+Pro:300,400" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
font-family: 'Source Sans Pro', sans-serif;
|
|
background-color: #fff;
|
|
line-height: 22pt;
|
|
font-size: 16px;
|
|
color: #333;
|
|
}
|
|
|
|
.message {
|
|
width: 600px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
background-color: #fff;
|
|
color: #333;
|
|
}
|
|
|
|
.wrapper {
|
|
padding: 20px;
|
|
}
|
|
|
|
.title {
|
|
color: #1a346b;
|
|
font-size: 22px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.logo {
|
|
width: 100%;
|
|
}
|
|
|
|
a {
|
|
color: rgba(150, 173,62, 1.0);
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="message">
|
|
<div class="wrapper">
|
|
<h1 class="title">Someone just prayed for you!</h1>
|
|
|
|
<p>You're being prayed for! Someone just prayed for the following prayer you posted:</p>
|
|
|
|
<p><a href="@Model.DetailUrl">@Model.Title</a></p>
|
|
|
|
<p>We hope you are encouraged by knowing that others are lifting you up in prayer.</p>
|
|
|
|
<!--<p>When it's appropriate, we'd love to hear how God is answering this request.<br> Share your story <a href="@Model.DetailUrl">here</a>.</p>-->
|
|
|
|
<!--<p>You can turn on/off notifications for this prayer <a href="@Model.ManageUrl">here</a>.</p>-->
|
|
|
|
<p>May God bless you,</p>
|
|
|
|
<img class="logo" src="@ViewBag.LogoUrl" title="Amen, The Prayer App" />
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|