I am going through the tutorial to send emails from a Razor view. The tutorial uses the WebMail helper
I am attempting the part of the tutorial where the ProcessRequest.cshtml page is created, however the provided code does not seem to reference the necessary namespace (System.Web.Helpers).
I've added in @using System.Web.Helpers at the top of the Razor view, however, it is not recognized as a namespace and yields the error:
The type or namespace name 'Helpers' does not exist in the Namespace 'System.Web'
I know this is the proper namespace, however I must not be implementing it properly. Anyone know what is going on?