Is it possible to get a couple of strings and send them to an email address.
And Send the strings Name, Lastname, and Address 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; }
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.




Reply With Quote