Skip to content
This repository has been archived by the owner on Jul 3, 2020. It is now read-only.

Commit

Permalink
Added ScheduleDescription to the Email Subject so it won't appear to …
Browse files Browse the repository at this point in the history
…be 1 Email Chain.
  • Loading branch information
bofirial committed Jun 11, 2017
1 parent 977c2d3 commit 8fdad68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Melody49Notifier/Notification/NotificationEmailSender.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public void SendNotificationEmail(TheaterSchedule currentTheaterSchedule)
MailMessage message = new MailMessage()
{
From = new MailAddress(Environment.GetEnvironmentVariable("FromEmailAddress"), "Melody 49 Drive-In"),
Subject = "New Showings at the Melody 49 Drive-In",
Subject = $"New Showings at the Melody 49 Drive-In - {currentTheaterSchedule.ScheduleDescription}",
Body = notificationEmailGenerator.CreateFromTemplate(currentTheaterSchedule),
IsBodyHtml = true
};
Expand Down

0 comments on commit 8fdad68

Please sign in to comment.