我正在尝试使用 Postal 从服务(不在 ASP.NET 项目中)发送电子邮件。我不断收到以下消息的异常:
error CS0103: The name 'model' does not exist in the current context
我正在关注 Postal wiki 中的教程:https ://github.com/andrewdavey/postal/wiki/Postal-in-non-web-scenario
我的模板看起来像:
@model Namespace1.AlertEmailViewModel
From: support@example.com
To: @Model.FirstName @Model.LastName <@Model.Email>
Subject: Alert! @Model.ShortDescription
(有问题的模型类确实存在。)
任何帮助,将不胜感激。谢谢!