Originariamente inviato da djciko
Per l'invio anche all'utente connesso:

codice:
protected void ButtonInvia_Click(object sender, EventArgs e)  {
        string from = "cataloghi@wecantour.it";
        string to = "cataloghi@wecantour.it";
        string bcc = "utenteconnesso@gmail.com";
        string subject = "Richiesta Catalogo 2010 WeCanTour";
        string body = "Corpo della mail in HTML";

        MailMessage message = new MailMessage();
        message.From = new MailAddress(from);
        message.To.Add(new MailAddress(to));
        message.To.Add(new MailAddress(bcc));
        message.Subject = subject;
        message.Body = body;

        message.IsBodyHtml = true;
        message.Priority = MailPriority.High; // ALTA PRIORITA'

        SmtpClient smtpMail = new SmtpClient("smtp.aruba.it");
        etc.........
}
madò ke casino nn funziona ...sto impazzendo..
cmq..ti ringrazio molto ..