I am getting the following crash when attempting to send a large (8 MB ) email file...

Discussion in 'ASP.NET 2.0' started by wisemx, Mar 26, 2008.

  1. Try searching their on-line KB:
    http://www.nsoftware.com/kb/default.aspx

    I just looked and there were tons of things to be found.
    Problem is, I haven't used that and did not know what to look for. [​IMG]
    Salute,
    Mark
     
  2. I am getting the following crash when attempting to send a large (8 MB ) email file...

    nsoftware.IPWorks.IPWorksSmtpException: System error: An established connection was
    aborted by the software in your host machine --->
    System.Net.Sockets.SocketException: An established connection was aborted by the
    software in your host machine
    at System.Net.Sockets.Socket.Send(Byte[] buffer, Int32 offset, Int32 size,
    SocketFlags socketFlags)
    at nsoftware.core.ipw61ex.bc(Byte[] A_0, Int32 A_1, Int32 A_2, SocketFlags A_3)
    at nsoftware.core.ipw61h.b(Byte[] A_0, Int32 A_1, Int32 A_2, Int32 A_3)
    --- End of inner exception stack trace ---
    at nsoftware.IPWorks.Smtp.Send()

    Any ideas?

    Post Edited By Moderator (mjp [DASP]) : 4/10/2008 11:15:25 PM GMT
     
  3. There's a 10MB limit on email sizes sent through the web server. The whole email message was probably bordering on this size even though the attachment is 8MB. Why not leave the file on the server and email the link to it instead.

    Aristotle

    DiscountASP.NET
    www.DiscountASP.NET
     
  4. Bruce

    Bruce DiscountASP.NET Staff

    Note that the 10 MB limit is the raw message size. When you encode your attachment (MIME encoding), the size usually increase by 20 - 30%.

    Bruce

    DiscountASP.NET
    www.DiscountASP.NET
     

Share This Page