Error: cannot convert from "string" to "MimeKit.MimeMessage"

884 Views Asked by At

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 this

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?

1

There are 1 best solutions below

0
On

"How to convert this string to MimeKit.MimeMessage and then send this as email"

I think the way you are trying to send email using SmtpClient is not correct. using IMjmlServices you should try below way:

MjmlEmailService:

 public readonly IMjmlServices _mjmlServices;
 public EmailController(IMjmlServices _mjml) => (_mjmlServices) = (_mjml);


 public async Task MjmlEmailService()
        {
            var prehtml = "<mjml><mj-body><mj-container><mj-section><mj-column><mj-text>Hello From MJML Service!</mj-text></mj-column></mj-section></mj-container></mj-body></mjml>";
            var result = await _mjmlServices.Render(prehtml);
            SmtpEmailProcessor(result.Html);
        }

Note: Here you have to pass the result.Html from MjmlResponse interface which will be email body while SMTP request sent. Here it better to make two service separated because MjmlEmailService and SmtpClient has different concern.

SmtpClient:

public void SmtpEmailProcessor(string emailBody)
        {
            try
            {
                SmtpClient objsmtp = new SmtpClient("smtp.gmail.com", 587);
                objsmtp.UseDefaultCredentials = false;
                objsmtp.Credentials = new NetworkCredential("YourEmailId", "YourEmailPassword");
                objsmtp.DeliveryMethod = SmtpDeliveryMethod.Network;
                objsmtp.EnableSsl = true;
                MailMessage msg = new MailMessage("From Email", "To Email", "Subject: MJML Test", emailBody);
                msg.IsBodyHtml = true;
                objsmtp.Timeout = 50000;
                objsmtp.Send(msg);
            }
            catch (Exception ex) { }
        }

Note: You can have a look on valid SmtpClient request here in this reference

Output:

enter image description here

Hope above steps guided you accordingly.