Esempio n. 1
0
        private void Script_SEND_EMAIL(string line)
        {
            string _from   = Get_String(ref line);
            string _to     = Get_String(ref line);
            string _sub    = Get_String(ref line);
            string _body   = Get_String(ref line);
            string _server = Get_String(ref line);
            int    _port   = Util.GetInt32(Get_String(ref line));

            Util.Send_Email(_from, _to, _sub, _body, _server, _port);
        }