Search The ForumSearch   RegisterRegister  LoginLogin

MailBee.NET SMTP

 AfterLogic Forum : MailBee.NET SMTP
Subject Topic: Problem using byte array for attachment Post ReplyPost New Topic
Author
Message << Prev Topic | Next Topic >>
sbrady
Newbie
Newbie


Joined: 02 March 2009
Online Status: Offline
Posts: 12
Posted: 23 March 2009 at 11:48am | IP Logged Quote sbrady

We are trying to send a mailmessage with an attachment, where we get the attachment in the form of a byte array. When we debug our code (below), we see that the mailmessage has an attachment, and that the size appears to be correct, but when it sends their is no attachment. Any help would be appreciated. The code and the log are below.

Code --

                      for (int i = 1; i < Request.Files.Count; i++)
                      {
                          if (Request.Files.FileName != "")
                           {
                              char [] cep1 ={ '\\' };
                              string fn = Request.Files.FileName.Split(cep1)[Request.Files.FileName.Split(cep1).Length - 1];

                              byte [] attb = new byte[Request.Files.InputStream.Length];

                              Request.File s.InputStream.Read(attb, 0, (int)Request.Files.InputStream.Length);
                              MailBee.Mime .HeaderCollection hc = new MailBee.Mime.HeaderCollection();
                              hc.Add(fn, fn, true);
                              string guid = System.Guid.NewGuid().ToString();
                              mailer.Messa ge.Attachments.Add(attb, fn, guid, Request.Files.ContentType.ToString(), hc, MailBee.Mime.NewAttachmentOptions.None, MailBee.Mime.MailTransferEncoding.Base64);

                          }

                      }
                      mailer.Send();

Log File --

[14:32:06.54] [INFO] Assembly version: 5.0.2.121.
[14:32:06.54] [INFO] Will send mail message.
[14:32:06.62] [INFO] Will resolve host "dedun.atum.net".
[14:32:06.62] [INFO] Host "dedun.atum.net" resolved to IP address(es) 216.94.1.241.
[14:32:06.62] [INFO] Will connect to host "dedun.atum.net" on port 25.
[14:32:06.62] [INFO] Socket connected to IP address 216.94.1.241 on port 25.
[14:32:06.73] [RECV] 220 dedun.atum.net Microsoft ESMTP MAIL Service, Version: 6.0.3790.3959 ready at Mon, 23 Mar 2009 14:36:09 -0400 \r\n
[14:32:06.73] [INFO] Connected to mail service at host "dedun.atum.net" on port 25 and ready.
[14:32:06.73] [INFO] Will send Hello command (HELO or EHLO).
[14:32:06.73] [SEND] EHLO atum.com\r\n
[14:32:06.79] [RECV] 250-dedun.atum.net Hello [216.191.53.136] \r\n250-TURN\r\n250-SIZE\r\n250-ETRN\r\n250-PIPELINING\r\n25 0-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-8bitmime\r\n250-BINA RYMIME\r\n250-CHUNKING\r\n250-VRFY\r\n250-TLS\r\n250-STARTTL S\r\n250-X-EXPS LOGIN\r\n250-X-EXPS=LOGIN\r\n250-AUTH LOGIN\r\n250-AUTH=LOGIN\r\n250-X-LINK2STATE\r\n250-XEXCH50\r \n250 OK\r\n
[14:32:06.81] [INFO] SMTP Hello completed.
[14:32:06.81] [INFO] Will send mail message to SMTP server "dedun.atum.net".
[14:32:06.81] [INFO] Will submit sender and recipients.
[14:32:06.81] [SEND] MAIL FROM:<iavrutin@atum.com>\r\n
[14:32:06.87] [RECV] 250 2.1.0 iavrutin@atum.com....Sender OK\r\n
[14:32:06.87] [SEND] RCPT TO:<iavrutin@atum.com>\r\n
[14:32:06.92] [RECV] 250 2.1.5 iavrutin@atum.com \r\n
[14:32:06.92] [INFO] Sender and recipients accepted by SMTP server. Will send message data now.
[14:32:06.93] [SEND] DATA\r\n
[14:32:06.93] [RECV] 354 Please start mail input.\r\n
[14:32:06.95] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.95] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.95] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.95] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.96] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.96] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.96] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.96] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.98] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.98] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.98] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.98] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.99] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.99] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.99] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.01] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.01] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.01] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.01] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.03] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.03] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.03] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.03] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.04] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.04] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.04] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.06] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.06] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.06] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.06] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.07] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.07] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.07] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.09] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.09] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.09] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.09] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.10] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.10] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.10] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.12] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.12] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.12] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.12] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.13] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.13] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.13] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.15] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.15] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.15] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.17] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.17] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.17] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.18] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.18] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.18] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.20] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.20] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.20] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.21] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.21] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.21] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.23] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.23] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.23] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.24] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.24] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.24] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.26] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.26] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.26] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.28] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.28] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.28] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.29] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.29] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.29] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.31] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.31] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.31] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.32] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.32] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.32] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.34] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.34] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.34] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.35] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.35] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.35] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.37] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.37] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.37] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.38] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.38] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.38] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.40] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.40] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.40] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.42] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.42] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.42] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.43] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.43] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.43] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.45] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.45] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.45] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.46] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.46] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.48] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.48] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.48] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.49] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.49] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.49] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.51] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.51] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.51] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.53] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.53] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.53] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.54] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.54] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.56] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.56] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.60] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.62] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.62] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.63] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.65] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.65] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.65] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.67] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.67] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.67] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.68] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.68] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.68] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.70] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.70] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.70] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.71] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.71] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.73] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.73] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.73] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.74] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.74] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.76] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.76] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.78] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.78] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.79] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.81] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.81] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.82] [SEND] [Data chunk of 1181 bytes sent.]
[14:32:07.82] [SEND] \r\n.\r\n
[14:32:07.84] [RECV] 250 Mail queued for delivery.\r\n
[14:32:07.84] [INFO] Message successfully submitted to SMTP server.
[14:32:07.84] [SEND] QUIT\r\n
[14:32:07.88] [RECV] 221 Closing connection. Good bye.\r\n
[14:32:07.88] [INFO] Will disconnect from host "dedun.atum.net".
[14:32:07.88] [INFO] Disconnected from host "dedun.atum.net".
[14:32:07.90] [INFO] Mail message sent.


Back to Top View sbrady's Profile Search for other posts by sbrady
 
Igor
AfterLogic Support
AfterLogic Support


Joined: 24 June 2008
Location: United States
Online Status: Offline
Posts: 6104
Posted: 24 March 2009 at 7:12am | IP Logged Quote Igor

We've tried to reproduce the issue using the following code, and everything works as expected, with no issues.

Code:
Smtp.LicenseKey = "....";
Smtp mailer = new Smtp();
mailer.SmtpServers.Add("mail.server.com", "username", "password");
mailer.From.DisplayName = "Username";
mailer.From.Email = "user@mail.server.com";
mailer.To.AddFromString("recipient@mail.server.com");
mailer.Subject = "Test Message";
mailer.BodyHtmlText = "<html>This is the test message content.</html>";

FileStream fs = new FileStream(@"D:\image.jpg", FileMode.Open);
byte [] attb = new byte[fs.Length];
fs.Read(attb, 0, (int)fs.Length);
MailBee.Mime.HeaderCollection hc = new MailBee.Mime.HeaderCollection();
hc.Add("image.jpg", "image.jpg", true);
string guid = System.Guid.NewGuid().ToString();
mailer.Message.Attachments.Add(attb, "image", guid, "image/jpeg", hc, MailBee.Mime.NewAttachmentOptions.None, MailBee.Mime.MailTransferEncoding.Base64);
mailer.Send();


Please try using this code. If it doesn't help, please provide us with necessary information which would allow us to reproduce the issue: self-sufficing code, email message, file(s) to be attached etc. You can submit this information using our Helpdesk.

Regards,
Igor
Back to Top View Igor's Profile Search for other posts by Igor
 
sbrady
Newbie
Newbie


Joined: 02 March 2009
Online Status: Offline
Posts: 12
Posted: 14 April 2009 at 6:35am | IP Logged Quote sbrady

We tried the below code, that resulted in the below log message. Again the attachment was not there. Is there a problem with our code, or do we need to open up a helpdesk ticket?:

Code ----

                      for (int i = 1; i < Request.Files.Count; i++)
                      {
                          if (Request.Files.FileName != "")
                           {
                              char [] cep1 ={ '\\' };
                              string fn = Request.Files.FileName.Split(cep1)[Request.Files.FileName.Split(cep1).Length - 1];

                              byte [] attb = new byte[Request.Files.InputStream.Length];

                              Request.File s.InputStream.Read(attb, 0, (int)Request.Files.InputStream.Length);
                              MailBee.Mime .HeaderCollection hc = new MailBee.Mime.HeaderCollection();
                              hc.Add(fn, fn, true);
                              string guid = System.Guid.NewGuid().ToString();
                              mailer.Messa ge.Attachments.Add(attb, fn, guid, Request.Files.ContentType.ToString(), hc, MailBee.Mime.NewAttachmentOptions.None, MailBee.Mime.MailTransferEncoding.Base64);

                          }

                      }
                      mailer.Send();


----- Log ----

[14:32:06.54] [INFO] Assembly version: 5.0.2.121.
[14:32:06.54] [INFO] Will send mail message.
[14:32:06.62] [INFO] Will resolve host "dedun.atum.net".
[14:32:06.62] [INFO] Host "dedun.atum.net" resolved to IP address(es) 216.94.1.241.
[14:32:06.62] [INFO] Will connect to host "dedun.atum.net" on port 25.
[14:32:06.62] [INFO] Socket connected to IP address 216.94.1.241 on port 25.
[14:32:06.73] [RECV] 220 dedun.atum.net Microsoft ESMTP MAIL Service, Version: 6.0.3790.3959 ready at Mon, 23 Mar 2009 14:36:09 -0400 \r\n
[14:32:06.73] [INFO] Connected to mail service at host "dedun.atum.net" on port 25 and ready.
[14:32:06.73] [INFO] Will send Hello command (HELO or EHLO).
[14:32:06.73] [SEND] EHLO atum.com\r\n
[14:32:06.79] [RECV] 250-dedun.atum.net Hello [216.191.53.136] \r\n250-TURN\r\n250-SIZE\r\n250-ETRN\r\n250-PIPELINING\r\n25 0-DSN\r\n250-ENHANCEDSTATUSCODES\r\n250-8bitmime\r\n250-BINA RYMIME\r\n250-CHUNKING\r\n250-VRFY\r\n250-TLS\r\n250-STARTTL S\r\n250-X-EXPS LOGIN\r\n250-X-EXPS=LOGIN\r\n250-AUTH LOGIN\r\n250-AUTH=LOGIN\r\n250-X-LINK2STATE\r\n250-XEXCH50\r \n250 OK\r\n
[14:32:06.81] [INFO] SMTP Hello completed.
[14:32:06.81] [INFO] Will send mail message to SMTP server "dedun.atum.net".
[14:32:06.81] [INFO] Will submit sender and recipients.
[14:32:06.81] [SEND] MAIL FROM:<iavrutin@atum.com>\r\n
[14:32:06.87] [RECV] 250 2.1.0 iavrutin@atum.com....Sender OK\r\n
[14:32:06.87] [SEND] RCPT TO:<iavrutin@atum.com>\r\n
[14:32:06.92] [RECV] 250 2.1.5 iavrutin@atum.com \r\n
[14:32:06.92] [INFO] Sender and recipients accepted by SMTP server. Will send message data now.
[14:32:06.93] [SEND] DATA\r\n
[14:32:06.93] [RECV] 354 Please start mail input.\r\n
[14:32:06.95] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.95] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.95] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.95] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.96] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.96] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.96] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.96] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.98] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.98] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.98] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.98] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.99] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.99] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:06.99] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.01] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.01] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.01] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.01] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.03] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.03] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.03] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.03] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.04] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.04] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.04] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.06] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.06] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.06] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.06] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.07] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.07] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.07] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.09] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.09] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.09] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.09] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.10] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.10] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.10] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.12] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.12] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.12] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.12] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.13] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.13] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.13] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.15] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.15] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.15] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.17] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.17] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.17] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.18] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.18] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.18] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.20] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.20] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.20] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.21] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.21] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.21] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.23] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.23] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.23] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.24] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.24] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.24] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.26] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.26] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.26] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.28] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.28] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.28] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.29] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.29] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.29] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.31] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.31] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.31] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.32] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.32] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.32] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.34] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.34] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.34] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.35] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.35] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.35] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.37] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.37] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.37] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.38] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.38] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.38] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.40] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.40] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.40] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.42] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.42] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.42] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.43] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.43] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.43] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.45] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.45] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.45] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.46] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.46] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.48] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.48] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.48] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.49] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.49] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.49] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.51] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.51] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.51] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.53] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.53] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.53] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.54] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.54] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.56] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.56] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.60] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.62] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.62] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.63] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.65] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.65] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.65] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.67] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.67] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.67] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.68] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.68] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.68] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.70] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.70] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.70] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.71] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.71] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.73] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.73] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.73] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.74] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.74] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.76] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.76] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.78] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.78] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.79] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.81] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.81] [SEND] [Data chunk of 8192 bytes sent.]
[14:32:07.82] [SEND] [Data chunk of 1181 bytes sent.]
[14:32:07.82] [SEND] \r\n.\r\n
[14:32:07.84] [RECV] 250 Mail queued for delivery.\r\n
[14:32:07.84] [INFO] Message successfully submitted to SMTP server.
[14:32:07.84] [SEND] QUIT\r\n
[14:32:07.88] [RECV] 221 Closing connection. Good bye.\r\n
[14:32:07.88] [INFO] Will disconnect from host "dedun.atum.net".
[14:32:07.88] [INFO] Disconnected from host "dedun.atum.net".
[14:32:07.90] [INFO] Mail message sent.
Back to Top View sbrady's Profile Search for other posts by sbrady
 
Igor
AfterLogic Support
AfterLogic Support


Joined: 24 June 2008
Location: United States
Online Status: Offline
Posts: 6104
Posted: 14 April 2009 at 6:49am | IP Logged Quote Igor

Based on the number of chunks sent, we can hardly believe there are no attachments in this message. Could you please use the above code to send us a message to support@afterlogic.com email address? Be sure to specify "Test message for AfterLogic" as message subject to prevent treating message as spam.

--
Regards,
Igor, AfterLogic Support
Back to Top View Igor's Profile Search for other posts by Igor
 
Igor
AfterLogic Support
AfterLogic Support


Joined: 24 June 2008
Location: United States
Online Status: Offline
Posts: 6104
Posted: 15 April 2009 at 2:17pm | IP Logged Quote Igor

Thank you for the test message, we've received it and opened in different mailers including Mozilla Thunderbird and WebMail Lite PHP.

Attachment is available in the message, it can be downloaded and viewed with no issues. Did you have troubles with accessing the attachment in any particular mailer?

--
Regards,
Igor, AfterLogic Support
Back to Top View Igor's Profile Search for other posts by Igor
 
sbrady
Newbie
Newbie


Joined: 02 March 2009
Online Status: Offline
Posts: 12
Posted: 20 April 2009 at 7:04am | IP Logged Quote sbrady

Sorry, there was some confusion on our end. The message you received was sent using System.Net.Mail, not the mailbee component. We have resent the message using mailbee.
Back to Top View sbrady's Profile Search for other posts by sbrady
 
sbrady
Newbie
Newbie


Joined: 02 March 2009
Online Status: Offline
Posts: 12
Posted: 20 April 2009 at 7:15am | IP Logged Quote sbrady

We've looked again, and if we use thunderbird we can see the attachment.

The mailer we are using is Outlook, and we don't appear to be able to see the message in it.
Back to Top View sbrady's Profile Search for other posts by sbrady
 
Igor
AfterLogic Support
AfterLogic Support


Joined: 24 June 2008
Location: United States
Online Status: Offline
Posts: 6104
Posted: 20 April 2009 at 8:14am | IP Logged Quote Igor

We've checked this in Outlook Express and it works as expected:



In Microsoft Outlook, everything is fine as well. Perhaps, your Outlook installation is configured to block potentially unsafe attachments, or some other security settings come in effect, particularly since attached file doesn't have any extension.

--
Regards,
Igor, AfterLogic Support
Back to Top View Igor's Profile Search for other posts by Igor
 
gjazz35
Newbie
Newbie


Joined: 09 December 2009
Online Status: Offline
Posts: 2
Posted: 10 December 2009 at 12:13am | IP Logged Quote gjazz35

what version of Outlook you are using?
Back to Top View gjazz35's Profile Search for other posts by gjazz35
 
gjazz35
Newbie
Newbie


Joined: 09 December 2009
Online Status: Offline
Posts: 2
Posted: 10 December 2009 at 12:14am | IP Logged Quote gjazz35

there's a possibility that it is the process of your installation or there's an incompatibility..
Back to Top View gjazz35's Profile Search for other posts by gjazz35
 

If you wish to post a reply to this topic you must first login
If you are not already registered you must first register

  Post ReplyPost New Topic
Printable version Printable version

Forum Jump

Powered by Web Wiz Forums version 7.9
Copyright ©2001-2004 Web Wiz Guide