Results 1 to 7 of 7

Thread: [RESOLVED] Email?

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Dec 2009
    Posts
    19

    Resolved [RESOLVED] Email?

    Hello,

    I am currently in a team of students at school who are building a website for a fitness/training business with asp.net. A small part of the system must send out weekly emails to members, and must be able to handle sending out quite a lot, if there gets to be many members.

    How shall we go about this? I have the ability to send emails, but when it used a Gmail account, I started getting back ""Technical details of permanent failure:Message rejected." emails that I've read probably have to do with limiting the number of sent emails (this was after about only 15 emails). I've never ventured beyond Gmail, so I don't know what else is out there to use for sending email out like this.

    For the time being, the email address could be anything. Because when this is handed in and this semester ends, we lose the responsibility over it. Given that we have just under 4 weeks to have the entire system complete, what is a simple option for sending emails quickly and easily, even now just for testing purposes?

    Thanks so much

  2. #2
    VB Addict Pradeep1210's Avatar
    Join Date
    Apr 2004
    Location
    Inside the CPU...
    Posts
    6,614

    Re: Email?

    The System.Net.Mail class has all you need to send emails. Just look up the msdn for this class documentation.
    Pradeep, Microsoft MVP (Visual Basic)
    Please appreciate posts that have helped you by clicking icon on the left of the post.
    "A problem well stated is a problem half solved." — Charles F. Kettering

    Read articles on My Blog101 LINQ SamplesJSON ValidatorXML Schema Validator"How Do I" videos on MSDNVB.NET and C# ComparisonGood Coding PracticesVBForums Reputation SaverString EnumSuper Simple Tetris Game


    (2010-2013)
    NB: I do not answer coding questions via PM. If you want my help, then make a post and PM me it's link. If I can help, trust me I will...

  3. #3

    Thread Starter
    Junior Member
    Join Date
    Dec 2009
    Posts
    19

    Re: Email?

    Quote Originally Posted by Pradeep1210 View Post
    The System.Net.Mail class has all you need to send emails. Just look up the msdn for this class documentation.
    Thanks, yeah that's what I'm using to send the email, but I need an email service that doesn't limit non-human-sent emails (I guess Gmail does, because after 15, it begin refusing to send and I'd receive the error above). Is there a free email service that is good for sending out emails with the System.Net.Mail class in bulk?

    Thanks,
    Tor

  4. #4
    PowerPoster techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,687

    Re: Email?

    If you are building this for a company, then what you need to be doing is testing against their SMTP servers... In the end that's what it's going to be using anyways. Or that's what it should be using.

    -tg
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  5. #5
    Superbly Moderated NeedSomeAnswers's Avatar
    Join Date
    Jun 2002
    Location
    Manchester uk
    Posts
    2,657

    Re: Email?

    yes i agree, you should ask your school / college if they have an SMTP Server setup, and test against that if you can.
    Please Mark your Thread "Resolved", if the query is solved & Rate those who have helped you



  6. #6
    Super Moderator Shaggy Hiker's Avatar
    Join Date
    Aug 2002
    Location
    Idaho
    Posts
    40,106

    Re: Email?

    Of course, there are ways around the limit....sort of. The limit is probably based on some metric such as messages/minute or some such. You have determined the quantity, but not the time frame. If the quantity is 15 every X, then you can send 10 every X. The next thing to determine is the X, which can be done empirically, or possibly through research.

    After all, nobody really cares if their spam comes in a few minutes late.
    My usual boring signature: Nothing

  7. #7

    Thread Starter
    Junior Member
    Join Date
    Dec 2009
    Posts
    19

    Re: Email?

    Thanks - I think my team lead is knowledgeable about setting this up, so I will talk to him.

    Thanks!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width