Author |
|
Sunitha Guest Group
Joined: 10 November 2003
Online Status: Online Posts: 262
|
Posted: 14 November 2005 at 11:46pm | IP Logged
|
|
|
hi
Iam using your mailbee component for sending and receiving mails.
When iam sending mails with multiple attachments,iam getting error,when the attachment size exceeds 1MB size.
How can i send mails with attachments of size morethan 1MB.
Can u please help me in resolving this error.
|
Back to Top |
|
|
Alex AfterLogic Support
Joined: 19 November 2003
Online Status: Offline Posts: 2206
|
Posted: 15 November 2005 at 1:24pm | IP Logged
|
|
|
If you're developing ASP application and using IIS6 web server, it might possibly restrict the maximum size of the form data which is uploaded to the web server. In that case, please use the following solution:
Sending with large attmts
Also, the mail server you're using might limit the maximum size of the outgoing mails. You may examine MailBee SMTP log file to find this out. To enable logging, please add the following code (on VB) before
using MailBee SMTP component:
Code:
SMTP.EnableLogging = True
SMTP.LogFilePath = "C:\my_log.txt"
...
SMTP.Send
|
|
|
You may send MailBee SMTP log file to support@afterlogic.com for further examination.
If mail server you're using really limits the size of the outgoing mails, you may try to change the settings of mail server to increase this max size. Also, you may try to change the SMTP server.
Regards,
Alex
|
Back to Top |
|
|