namespace Main
{
    public class Customizer : MercatorUi.ICustomizers.IExec
    {
        public void Main(MercatorUi.ICustomizers.ExecAction action)
        {
            if ((action == MercatorUi.ICustomizers.ExecAction.DossierOpen) && MercatorUi.Globals.IsMcdValetConsole)
            {
                MercatorUi.Globals.SendMailOffice365GraphParametersForMcdValetConsole = new IneoSmtp.Smtp.SendMailOffice365GraphParameters
                (
                    ... ,
                    ...,
                    ...,
                    ...
                );
            }
        }
    }
}