我有一个 ASP.NET MVC3 站点,我希望能够使用不同类型的电子邮件服务,具体取决于站点的繁忙程度。
考虑以下:
public interface IEmailService
{
void SendEmail(MailMessage mailMessage);
}
public class LocalEmailService : IEmailService
{
public LocalEmailService()
{
// no setup required
}
public void SendEmail(MailMessage mailMessage)
{
// send email via local smtp server, write it to a text file, whatever
}
}
public class BetterEmailService : IEmailService
{
public BetterEmailService (string smtpServer, string portNumber, string username, string password)
{
// initialize the object with the parameters
}
public void SendEmail(MailMessage mailMessage)
{
//actually send the email
}
}
虽然网站正在开发中,但我所有的控制器都将通过 LocalEmailService 发送电子邮件;当网站投入生产时,他们将使用 BetterEmailService。
我的问题是双重的:
1) 我究竟如何传递 BetterEmailService 构造函数参数?是这样的吗(来自~/Bootstrapper.cs):
private static IUnityContainer BuildUnityContainer()
{
var container = new UnityContainer();
container.RegisterType<IEmailService, BetterEmailService>("server name", "port", "username", "password");
return container;
}
2) 有没有更好的方法来做到这一点 - 即将这些密钥放在 web.config 或其他配置文件中,这样网站就不需要重新编译来切换它正在使用的电子邮件服务?
非常感谢!