Hey ppl, i'm quite new to the whole programming thing so bear with me.
I want to use a RichTextBox as a body for a email. How do i get the textBox to accept images.

:-|

Recommended Answers

All 4 Replies

Hey ppl, i'm quite new to the whole programming thing so bear with me.
I want to use a RichTextBox as a body for a email. How do i get the textBox to accept images.

:-|

Cooooool, never mind about the image in TextBox, got that right.
But now i realy need help.......
I want to insert all information from the textBox into a mail message's
body, including the pictures.
Please assist me here.......
:-|

To send the email, not to sure aboutt he picture.

// create mail message object
MailMessage mail = new MailMessage();
mail.From = "";           // put the from address here
mail.To = "";             // put to address here
mail.Subject = "";        // put subject here	
mail.Body = "";           // put body of email here
SmtpMail.SmtpServer = ""; // put smtp server you will use here 
// and then send the mail
SmtpMail.Send(mail);

To send the email, not to sure aboutt he picture.

// create mail message object
MailMessage mail = new MailMessage();
mail.From = "";           // put the from address here
mail.To = "";             // put to address here
mail.Subject = "";        // put subject here    
mail.Body = "";           // put body of email here
SmtpMail.SmtpServer = ""; // put smtp server you will use here 
// and then send the mail
SmtpMail.Send(mail);

Thanks for the reply but i have that syntax, but i would like to know
to load it into the body.
eg. mailMsg.Body = richTextBox.ToString();
Thanx.....

Sorry for the noddy qeustion but,
how do i read values from a textbox line for line???????

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.