How to make a json request.
var m = new MailMessage();
http://m.To.Add("json@example.com");
m.Subject = "Urgent, it is about the thing";
m.Body = "Json, will you please come to my office";
SmtpServer.Send(m);
Post
August 18, 2019
August 18, 2019
How to make a json request.
var m = new MailMessage();
http://m.To.Add("json@example.com");
m.Subject = "Urgent, it is about the thing";
m.Body = "Json, will you please come to my office";
SmtpServer.Send(m);