I have tried referencing system.net.mail in various frameworks:
framework: "net451"
dependency: "System.Net.Mail": "1.0.0-rc2-00001"
error: does not support framework
framework: "net46"
dependency: "System.Net.Mail": "1.0.0-rc2-00001"
error: does not support framework
framework: "dotnet5.4"
System.Net.Mail not available
framework: "dnx46"
System.Net.Mail not available
I have also tried using email package MailKit 1.2.21, installed from NuGet.
"net46": {
"dependencies": {
"MailKit": "1.2.21"
}
If I reference MailKit class, error: "The type of namespace cannot be found".
How do I send email in MVC 6?