Como adicionar variáveis personalizadas ao email do SendGrid via API C # e modelo

Estou tentando descobrir como adicionar variáveis ao modelo existente (exemplo: Link ou nome da Web dinamicamente) que foi criado no mecanismo de modelo sendgrid, não tenho certeza de como fazer isso usando as bibliotecas SendGrid C # .NET. Gostaria de saber se alguém poderia me ajudar.

// Create the email object first, then add the properties.
SendGridMessage myMessage = new SendGridMessage();

myMessage.AddTo("[email protected]");
myMessage.From = new MailAddress("[email protected]", "Mr test");
myMessage.Subject = " ";

var timestamp = DateTime.Now.ToString("HH:mm:ss tt");
myMessage.Html = "<p></p> ";

myMessage.EnableTemplate("<p> <% body %> Hello</p>");
myMessage.EnableTemplateEngine("9386b483-8ad4-48c2-9ee3-afc7618eb56a");
var identifiers = new Dictionary<String, String>();
identifiers["USER_FULLNAME"] = "Jimbo Jones";
identifiers["VERIFICATION_URL"] = "www.google.com";
myMessage.AddUniqueArgs(identifiers);

// Create credentials, specifying your user name and password.
var credentials = new NetworkCredential("username", "password");
// Create an Web transport for sending email.
var transportWeb = new Web(credentials);
// Send the email.
transportWeb.Deliver(myMessage);

questionAnswers(4)

yourAnswerToTheQuestion