7 lines
224 B
C#
7 lines
224 B
C#
|
|
// See https://aka.ms/new-console-template for more information
|
|||
|
|
using System.Net.Mail;
|
|||
|
|
|
|||
|
|
var displayName = "Thomas Ardal";
|
|||
|
|
var email = "thomas@elmah.io";
|
|||
|
|
var mailAddress = new MailAddress(email, displayName);
|
|||
|
|
return;
|