Basic help with an ASP.NET mailing script

Hi there,

I’ve been put in charge of developing a simple mailing script for a client. Trouble is, I don’t have access to a .NET test server, and there is a 2 day turn around with the clients, which is AWESOME for achieving ANYTHING. (please excuse my sarcasm)

Anyway, I’d thought I’d just run it past the gurus in here, to make sure it looks ok. It’s super simple, it gets sent some POST vars from Flash, and has to email someone. It’s a alteration of an existing contact form off their server, so it “should” be straight forward.

Would love to hear some feedback.

<%

SmtpClient smtpClient = new SmtpClient();
NetworkCredential basicCredential = new NetworkCredential("","");
MailMessage mail = new MailMessage();
mail.To.Add("email@email.com, anotheremail@email.com");	
MailAddress fromAddress = new MailAddress(Request.Form["email"]);	
mail.From = fromAddress;
mail.IsBodyHtml = false;
mail.Subject = "Website Enquiry";
mail.Body = "Website Enquiry
Name: "+Request.Form["first_name"]+" "+Request.Form["last_name"] + "
Region: "+Request.Form["region"]+"
Email address: " + Request.Form["email"] + "
Phone: "+Request.Form["phone"] + "
Postal Address: "+ Request.Form["postal"] + "
Message: "+Request.Form["message"];
smtpClient.Host = "mail.theserver.com";
smtpClient.UseDefaultCredentials = false;
smtpClient.Credentials = basicCredential;
smtpClient.Send(mail);

%>