示例#1
0
        private void btnReenviar_Click(object sender, EventArgs e)
        {
            string asunto  = "Fwd: " + message_actual.Asunto;
            string mensaje = message_actual.Mensaje;

            redactar_email.redactar form = new redactar_email.redactar(this, asunto, "", mensaje);
            form.Show();
        }
示例#2
0
        private void btnResponder_Click(object sender, EventArgs e)
        {
            string asunto  = "Re: " + message_actual.Asunto;
            string para    = message_actual.Para;
            string mensaje = message_actual.Mensaje;

            redactar_email.redactar form = new redactar_email.redactar(this, asunto, para, mensaje);
            form.Show();
        }