MailMessage email = nowy MailMessage (fromEmail, ToEmail);
email. Temat = temat;
email.CC.Add (toEmailCC);
email.IsBodyHtml = true;
email. Ciało = ciało; // twój ciało zawartość w HTML
SmtpClient sMail = nowy SmtpClient ("YourSmtpServer");
sMail.DeliveryMethod = SmtpDeliveryMethod.Network;
sMail.Credentials = nowy NetworkCredential ("YourUserIfNeeded", "YourPasswordIfNeeded");
Doczepianie rzecz = nowy Doczepianie (filename); //if wcale
email. Attachments.Add (rzecz);
sMail.Send (email);
|