bluejaguar456 Posted September 13, 2006 Posted September 13, 2006 Hello everybody i am a bit stuck at the moment i have want to create a program that sends e-mails to a specified e-mail address, my mother doesnt have a clue on how to send e-mails so i am creating her an email program where she types then presses a btton and it sends to me, my e-mail address is a hotmail account is there anyway of sending an e-mail on the click of a button from a windows form? thankyou in advance Quote
mskeel Posted September 13, 2006 Posted September 13, 2006 This looks promising, though I only skimmed it. I think there might also be some libraries from the .Net Framework you can use for this. Let's face it, though. The easiest way would be for you to sit down with your mom and teach her the basics of Outlook Express. That is my recommendation. Or, you could even download an instant message client and use that for communication instead of email if you wanted something really easy. Just download it and put your name in her buddy list and you'll be good to go. Quote
bluejaguar456 Posted September 14, 2006 Author Posted September 14, 2006 This looks promising' date=' though I only skimmed it. I think there might also be some libraries from the .Net Framework you can use for this. Let's face it, though. The easiest way would be for you to sit down with your mom and teach her the basics of Outlook Express. That is my recommendation. Or, you could even download an instant message client and use that for communication instead of email if you wanted something really easy. Just download it and put your name in her buddy list and you'll be good to go. i could do that but i need it simple, is there anyway that i can send an e-mail to a hotmail account? i cannot find anything on the internet. thanks Quote
mskeel Posted September 14, 2006 Posted September 14, 2006 Sending mail to a hotmail account is just like sending mail to any other account. Do you mean through or using a hotmail account? Quote
bluejaguar456 Posted September 14, 2006 Author Posted September 14, 2006 Sending mail to a hotmail account is just like sending mail to any other account. Do you mean through or using a hotmail account? sending to a hotmail account using my program Quote
Malfunction Posted September 15, 2006 Posted September 15, 2006 but you do have some kind of email account set up for your mom? because otherwise you'd need your own smtp server. i'd justsetup some freemailaccount and use the SmtpClient class that comes with .Net. You create a SmtpServer instance using the account data of your freemail account. look at this posting: http://www.xtremedotnettalk.com/showthread.php?t=96302&highlight=smtp Quote Debug me...
bluejaguar456 Posted September 15, 2006 Author Posted September 15, 2006 but you do have some kind of email account set up for your mom? because otherwise you'd need your own smtp server. i'd justsetup some freemailaccount and use the SmtpClient class that comes with .Net. You create a SmtpServer instance using the account data of your freemail account. look at this posting: http://www.xtremedotnettalk.com/showthread.php?t=96302&highlight=smtp yes i have set up a hotmail account for my mom but i need to know the smtp server address for hotmail does anyone know it? Quote
Malfunction Posted September 18, 2006 Posted September 18, 2006 probalby too late but try mail.hotmail.com Quote Debug me...
mskeel Posted September 18, 2006 Posted September 18, 2006 There may be other problems, though, depending on your ISP. Some ISP's are blocking the ability to send mail through outside SMTP servers (for residential accounts at least). Instead you have to send through the mail server your ISP provides. Just trying to give you a heads up for another problem you might run into while putting this together. I'm not saying you're going to have this problem, but just in case... The ISP blocks sending through third party mail servers in an attempt to stop spammers from sending spam from within their zone of responsibility. If the spammers try to send spam through the ISP's mail server, they can more easily shut it down. Quote
Nate Bross Posted September 19, 2006 Posted September 19, 2006 I have run into the same Problem MSKeel. It's very annoying, gotta reconfigure outlook everytime I go to a new Wi-Fi spot.... to my post.. I know several large ISPs do this Comcast - Forces Use of Comcast Servers Cox Communications - Forces use of their Servers SBC - blocks port 25 unless you 'opt-out' I'm sure there are many more too. Quote ~Nate� ___________________________________________ Please use the [vb]/[cs] tags on posted code. Please post solutions you find somewhere else. Follow me on Twitter here.
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.