Hi! 606 is a free template created by Sadhana Ganapathiraju, aka SimplyGold. It started out its life as a commercial template, but now it's a free template released under CC license, which basically means that you can use it, modify it, and do whatever you want with it as long as it doesn't have anything to do with commercial use.
I included a link at the bottom that says that the design was by me. You don't need to keep it, but I'd much appreciate it if you do. :-) Except for this one, pretty much all other links need to be modified.
protected void Page_Load(object sender, EventArgs e)
{
try
{
MailMessage message = new MailMessage(
"from@example.com",
"to@example.com",
"Some Important Message",
"This is a test message &
it's not that important.");
SmtpClient client = new SmtpClient(
"your.smtp.server.com");
System.Net.NetworkCredential credentials = new
System.Net.NetworkCredential(
"username",
"password");
client.UseDefaultCredentials = true;
client.Credentials = credentials;
client.Send(message);
}
catch (Exception ex)
{
Response.Write("Oops! Couldn't send the e-mail: " +
ex.ToString());
}
}