mirror of
https://github.com/rudollee/LearningMVC.git
synced 2025-06-07 16:06:21 +00:00
94 lines
2.7 KiB
C#
94 lines
2.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Net;
|
|
using System.Net.Mail;
|
|
using System.Text;
|
|
using SportsStore.Domain.Abstract;
|
|
using SportsStore.Domain.Entities;
|
|
|
|
|
|
namespace SportsStore.Domain.Concrete
|
|
{
|
|
public class EmailSettings
|
|
{
|
|
public string MailToAddress = "order@example.com";
|
|
public string MailFromAddress = "sportsstore@example.com";
|
|
public bool UseSsl = true;
|
|
public string Username = "MySmtpUsername";
|
|
public string Password = "MySmtpPassword";
|
|
public string ServerName = "smtp.example.com";
|
|
public int ServerPort = 587;
|
|
public bool WriteAsFile = false;
|
|
public string FileLocation = @"c:\sports_store_emails";
|
|
}
|
|
|
|
public class EmailOrderProcessor : IOrderProcessor
|
|
{
|
|
private EmailSettings emailSettings;
|
|
|
|
public EmailOrderProcessor(EmailSettings settings)
|
|
{
|
|
emailSettings = settings;
|
|
}
|
|
|
|
public void ProcessOrder(Cart cart, ShippingDetails shipingInfo)
|
|
{
|
|
using (var smtpClient = new SmtpClient())
|
|
{
|
|
smtpClient.EnableSsl = emailSettings.UseSsl;
|
|
smtpClient.Host = emailSettings.ServerName;
|
|
smtpClient.Port = emailSettings.ServerPort;
|
|
smtpClient.UseDefaultCredentials = false;
|
|
smtpClient.Credentials = new NetworkCredential(emailSettings.Username, emailSettings.Password);
|
|
|
|
if (emailSettings.WriteAsFile)
|
|
{
|
|
smtpClient.DeliveryMethod = SmtpDeliveryMethod.SpecifiedPickupDirectory;
|
|
smtpClient.PickupDirectoryLocation = emailSettings.FileLocation;
|
|
smtpClient.EnableSsl = false;
|
|
}
|
|
|
|
StringBuilder body = new StringBuilder()
|
|
.AppendLine("A new order has been submitted")
|
|
.AppendLine("---")
|
|
.AppendLine("Items:");
|
|
|
|
foreach (var line in cart.Lines)
|
|
{
|
|
var subtotal = line.Product.Price * line.Quantity;
|
|
body.AppendFormat("{0} x {1} (subtotal: {2:c}", line.Quantity, line.Product.Name, subtotal);
|
|
}
|
|
|
|
body.AppendFormat("Total order value: {0:c}", cart.ComputeTotalValue())
|
|
.AppendLine("---")
|
|
.AppendLine("Ship to:")
|
|
.AppendLine(shipingInfo.Name)
|
|
.AppendLine(shipingInfo.Line1)
|
|
.AppendLine(shipingInfo.Line2 ?? "")
|
|
.AppendLine(shipingInfo.Line3 ?? "")
|
|
.AppendLine(shipingInfo.City)
|
|
.AppendLine(shipingInfo.State ?? "")
|
|
.AppendLine(shipingInfo.Country)
|
|
.AppendLine(shipingInfo.Zip)
|
|
.AppendLine("---")
|
|
.AppendFormat("Gift wrap: {0}", shipingInfo.GiftWrap ? "Yes" : "No");
|
|
|
|
MailMessage mailMessage = new MailMessage(
|
|
emailSettings.MailFromAddress,
|
|
emailSettings.MailToAddress,
|
|
"New order submitted",
|
|
body.ToString());
|
|
|
|
if (emailSettings.WriteAsFile)
|
|
{
|
|
mailMessage.BodyEncoding = Encoding.ASCII;
|
|
}
|
|
|
|
smtpClient.Send(mailMessage);
|
|
}
|
|
}
|
|
}
|
|
|
|
} |