Programmatically your code is probably correct, your e-mail server just does not allow relaying. I.e. Neither your sender or recipient address is "native" to the mail server.
Following code should work for godaddy, found on another site... System.Net.Mail. MailMessage mail = new System.Net.Mail.MailMessage(); mail.To. Add(toaddress); mail.
From = "fromaddress"; mail. Subject = Subject; mail. Body = Body ; mail.
IsBodyHtml = true ; Attachment attachment = new Attachment(fileName); mail.Attachments. Add(attachment); //add the attachment SmtpClient client = new SmtpClient(); client. Credentials = new System.Net.
NetworkCredential(username, pwd); client. Host = "godaddysmtpserver"; try { client. Send(mail); } catch (Exception ex) { //the exception }.
I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.