I need to send an email in asp.net but I need sender appears like \"MySiteName\" without info@mysitename.com.
you could try something like this
MailAddress from = new MailAddress("info@mysitename.com", "MySiteName");
More info here
http://msdn.microsoft.com/en-us/library/system.net.mail.mailaddress.aspx