Button stylings

This commit is contained in:
2017-02-09 13:05:14 -05:00
parent 6c2b9d7429
commit 53c358a63a
9 changed files with 978 additions and 10 deletions
+3 -3
View File
@@ -25,7 +25,7 @@ namespace LeafWeb.WebCms.Services
private const string ContactSubject = "LeafWeb Contact Message";
/// <summary>
/// Semicolon separated values
/// comma separated values
/// </summary>
private readonly string _adminEmailAddresses;
@@ -183,12 +183,12 @@ namespace LeafWeb.WebCms.Services
public void SendContactEmail(ContactForm contact)
{
var body =
$"via LeafWeb, ${contact.Name} sent the following message from the Contact form." +
$"via LeafWeb, {contact.Name} sent the following message from the Contact form." +
Environment.NewLine + Environment.NewLine +
"Message" +
Environment.NewLine + Environment.NewLine +
"--------" +
Environment.NewLine +
Environment.NewLine + Environment.NewLine +
contact.Message;
var message = new MailMessage(_emailFromAddress, _adminEmailAddresses, ContactSubject, body)