Пример #1
0
        //public static void SendTest()
        //{
        //    String from = "Koparion BookStore <" + email + ">";
        //    GoogleMailer.Send(from, "*****@*****.**", "", "", "Test", "Test mail", "");
        //}

        // Gửi mail đơn giản
        public static void Send(String from, String to, String subject, String body)
        {
            GoogleMailer.Send(from, to, "", "", subject, body, "");
        }
Пример #2
0
        static String password = "******";            //vui lòng sửa password của bạn

        // Gửi mail từ hệ thống
        public static void Send(String to, String subject, String body)
        {
            String from = "Koparion BookStore <" + email + ">";

            GoogleMailer.Send(from, to, "", "", subject, body, "");
        }