嗨,我一直收到这个错误:
Exception Details: System.IO.DirectoryNotFoundException: Could not find a part of the path 'D:\Websites\site_sitecore\Website\Template\claim.htm'.
我正在使用的代码是:
message.BodyFileName = "/Template/claim.htm";
基本上是尝试通过电子邮件发送电子邮件模板,但我无法找到路径。如果我使用该文件的外部链接,它拒绝访问它,但无法弄清楚如何获得正确的内部工作路径,任何想法?
答案 0 :(得分:1)
使用Server.MapPath('〜/ Template / claim.htm')。这有用吗?
答案 1 :(得分:0)
尝试message.BodyFileName = "Template/claim.htm";