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
        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
        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);
        }