bueno espero alguien me pueda ayudar saludos.
Código
cliente.Send(msg);
codigo completo
Código
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Net.Mail; using System.Net;//librerias using System.Web;//librerias namespace correo { public partial class Form1 : Form { public Form1() { InitializeComponent(); } SmtpClient cliente; //cliente de correo MailMessage msg; //datos del correo Attachment anexo; //anexos private void button3_Click(object sender, EventArgs e) { //datos del correo msg.Attachments.Add(anexo); msg.Body = rbtTexto.Text; msg.Subject = asuntotxt.Text; msg.To.Add(txtDestinario.Text); //credenciales cliente.Port = 25; cliente.Host = comboBox1.Text; cliente.EnableSsl = true; cliente.Send(msg); } private void adjuntar_Click(object sender, EventArgs e) { if (open.ShowDialog() == DialogResult.OK) { lblArchivoadjunto.Text = open.FileName; }; } } }