Is it possible to get a couple of strings and send them to an email address.

Code:
private void button1_Click(object sender, EventArgs e)
{
string Name;
string LastName;
string Address;

Name = textbox1.text;
LastName = textbox2.text;
Address = textbox3.text; 
}
And Send the strings Name, Lastname, and Address to an email address.

I'm Guessing you would have to write it to a .txt file. Then somehow email it.

But i am not exactly sure how.

How do you do this?

Thanks in advance.