I want to send a email
public readonly IMjmlServices _mjmlServices;
bodyBuilder.HtmlBody += $"</tr></ mj - table ></ mj - column ></ mj - section ></ mj - body ></ mjml >";
bodyBuilder.TextBody += $"This is some plain text";
var result = _mjmlServices.Render(bodyBuilder.HtmlBody).Result;
SmtpClient client = new SmtpClient();
try
{
client.Connect("Smtp.gmail.com", 465, true);
client.Authenticate("", "");
client.Send(result.Html);
Console.WriteLine("----- EMAIL SENT!! -----");
}
but at client.Send(result.Html);
it is giving error saying that Error: cannot convert from "string" to "MimeKit.MimeMessage" like
How to convert this string to MimeKit.MimeMessage and then send this as email?
How to convert this string to MimeKit.MimeMessage and then send this as email?
"How to convert this string to MimeKit.MimeMessage and then send this as email"
MjmlEmailService:
SmtpClient:
Note:
You can have a look on validSmtpClient
requesthere in this reference
Output:
Hope above steps guided you accordingly.