Author |
|
Patch Guest Group
Joined: 10 November 2003
Online Status: Online Posts: 262
|
Posted: 02 May 2004 at 9:44pm | IP Logged
|
|
|
WebMail Pro has Databases supported: MS Access or MS SQL Server. Do you mean each mail will add to the Database with SQL record? or just store user account information?
Thx
|
Back to Top |
|
|
Alex AfterLogic Support
Joined: 19 November 2003
Online Status: Offline Posts: 2206
|
Posted: 03 May 2004 at 12:23pm | IP Logged
|
|
|
Database stores account information and read/unread status of each message.
Messages themselves are not stored in database.
|
Back to Top |
|
|
prasad Challa Guest Group
Joined: 10 November 2003
Online Status: Online Posts: 262
|
Posted: 24 May 2004 at 4:50pm | IP Logged
|
|
|
Hi,
Is there a way where i can read through the total email and store it in my local DB.
Thanks
Prasad Challa
|
Back to Top |
|
|
Alex AfterLogic Support
Joined: 19 November 2003
Online Status: Offline Posts: 2206
|
Posted: 25 May 2004 at 5:44am | IP Logged
|
|
|
You can get local copy of all messages in the mailbox using Search and RetrieveSingleMessage methods of POP3 object. Search method is used to query new messages information and discussed here:
Read messages
Once new message is detected (using Search method and database lookup) and retrieved (using RetrieveSingleMessage method), you can store it in your database. You can use different storing schemes depending on your task. For example, you can save all message with attachments to database (by saving Message.RawBody property) or save Message.BodyText in database and Message.Attachments to disk. Or you can use Message.SaveMessage method to save message to disk and store only message headers in database. MailBee itself has no limitations on message save/read schemes.
|
Back to Top |
|
|
prasad Challa Guest Group
Joined: 10 November 2003
Online Status: Online Posts: 262
|
Posted: 25 May 2004 at 4:40pm | IP Logged
|
|
|
Hello,
Is there a method where i can zip all the attachments and save it to the disk and when the user requests i can give him this zip file
Thanks
prasad challa
|
Back to Top |
|
|
Alex AfterLogic Support
Joined: 19 November 2003
Online Status: Offline Posts: 2206
|
Posted: 26 May 2004 at 6:08am | IP Logged
|
|
|
You can save all attachments to disk (using MailBee) and then pack them into zip file (using third-party components specially designed for this purpose).
|
Back to Top |
|
|