Leafcutter question

Is it possible to send an email from Grasshopper to someone with a gmail account with a link of a Leafcutter link?

I found this thread from grasshopper 3d showing a way to send a spam email from grasshopper

System.Net.Mail.MailMessage anEmail = new System.Net.Mail.MailMessage();
anEmail.From = "me@here.com";
anEmail.To = "you@there.com";
anEmail.Subject = "A Test Email";
anEmail.Body = "Just some text that will be the body of the email.";

System.Net.Mail.SmtpClient client = new System.Net.Mail.SmtpClient();
client.Host = "smtp.yourmailhost.com";
client.Send(anEmail);

I haven’t figure it out yet too, so lets keep connected and update here if you find a way