IneoSmtp.Smtp mail = MercatorUi.Globals.MercatorTasksToMain.GetNewStmp();
mail.Subject = "Mon sujet";
mail.Message = "Mon message";
if (!mail.SendMail())
    MercatorUi.Globals.MercatorTasksToMain.Log("Erreur envoi mail : " + mail.Error, isError: true);
else
    MercatorUi.Globals.MercatorTasksToMain.Log("Mail correctement envoyé à " + mail.Recipient);