WCF服务无法通过MailDefinition发送邮件

时间:2011-08-25 04:22:17

标签: c# wcf email

    // stuff......

    return SendCreationMail(Membership.GetUser((Guid)request.UserEntityId), request, new Control());
}

private const string TemplateRoot = "~/app_shared/templates/mail/";
private const string ServerRoot = TemplateRoot + "server/";

public static bool SendCreationMail(MembershipUser user, IServerAccountRequest request, Control owner)
{
    var definition = new MailDefinition { BodyFileName = string.Concat(ServerRoot, "creation.htm"), IsBodyHtml = true };
    var subject = "New {0} account created!".FormatWith(request.ServerApplicationContract.Id);

    var data = ExtendedData(DefaultData, subject, user);

    data.Add("<%ServerApplication%>", request.ServerApplicationContract.Id);
    data.Add("<%ServerApplicationName%>", request.ServerApplicationContract.ApplicationName);
    data.Add("<%AccountUsername%>", request.AccountUsername);

    data.Add("<%ServerInfo%>", "/server/{0}/info".FormatWith(request.ServerApplicationContract.Id.ToLower()));

    return definition.CreateMailMessage(user.Email, data, owner).Send(subject, ApplicationConfiguration.MailSenderDisplayName);
}

我明白了:

  

值不能为空。参数名称:basepath

     

at System.Web.Util.UrlPath.Combine(String appPath,String basepath,   字符串相对)
  在   System.Web.UI.WebControls.MailDefinition.CreateMailMessage(字符串   收件人,IDictionary替换,控制所有者)
  在   Damnation.Website.Main.Common.MailTemplating.Server.SendCreationMail(的MembershipUser   user,IServerAccountRequest请求,控制所有者)
  在Damnation.Website.Main.Common.MailTemplating.Server.SendCreationMail(IServerAccountRequest)   请求)
  在Damnation.Website.Main.Business.Model.ServerAccountRequest.UpdateRequestsAfterServerProcessing(IEnumerable`1   结果)

事情是我没有实际的控件传递给它,我想知道如何设置一个控制,以避免这种无意义的异常。我正在使用相对路径...所以这没有任何意义。

具有该服务的应用程序位于ASP.NET WebForms .NET 4下。使用者应用程序也是.NET 4下的控制台应用程序

3 个答案:

答案 0 :(得分:4)

我遇到了同样的问题,并且我了解到这种情况正在发生,因为在尝试执行定义时无法找到控件的路径.CreateMailMessage。您想要创建一个空白的Web用户控件。也许这不是最优雅的解决方案,但它可以完成工作。

这就是我所做的:

1)在项目中添加Web用户控件文件,例如Test.ascx。

2)在.svc文件中添加以下代码:

Page page = new Page();

Test test = (Test)page.LoadControl("Test.ascx");

3)将你的definition.CreateMailMessage行更新为:

return definition.CreateMailMessage(user.Email, data, test).Send(subject, ApplicationConfiguration.MailSenderDisplayName);

您将不再获得basepath null异常。

答案 1 :(得分:0)

我遇到了同样的问题,但这是因为我在一个项目.NET控制台应用程序上,当我将代码传递给ASP.NET时,如果没有创建页面和测试,我运行良好。

答案 2 :(得分:0)

我有同样的错误,但是对我来说,问题是我在为BodyFileName和EmbeddedObjects使用相对路径。将它们更改为绝对路径对我来说就是一个错误。