コード例 #1
0
        static void EnviarEmail(string responsable, string to, string copiaResponsable, string cc, string Titulo, string mensaje)
        {
            CorreoWCFClient objCorreoWCF = new CorreoWCFClient();

            objCorreoWCF.EnviarCorreo(responsable, to, copiaResponsable, cc, Titulo, mensaje);
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: gs-team-systems/INTRANET
        static void EnviarEmail(string responsable, string to, string cc, string asunto, string mensaje)
        {
            CorreoWCFClient objCorreoWCF = new CorreoWCFClient();

            objCorreoWCF.MerlinEnviarCorreo(responsable, to, "", cc, asunto, mensaje);
        }
コード例 #3
0
        static void EnviarEmail(string responsable, string to, string mensaje)
        {
            CorreoWCFClient objCorreoWCF = new CorreoWCFClient();

            objCorreoWCF.EnviarCorreo(responsable, to, null, null, "Reporte de contratos por vencer", mensaje);
        }
コード例 #4
0
ファイル: Program.cs プロジェクト: gs-team-systems/WMSGS
        static void EnviarEmail(string responsable, string to, string cc, string asunto, string mensaje, string FilePath)
        {
            CorreoWCFClient objCorreoWCF = new CorreoWCFClient();

            objCorreoWCF.MerlinEnvioCorreoAdjunto(responsable, to, "", cc, asunto, mensaje, FilePath);
        }
コード例 #5
0
        static void EnviarEmail(string responsable, string to, string mensaje)
        {
            CorreoWCFClient objCorreoWCF = new CorreoWCFClient();

            objCorreoWCF.EnviarCorreo(responsable, to, null, null, "Reporte de vencimiento de marcas", mensaje);
        }