Search The ForumSearch   RegisterRegister  LoginLogin

MailBee POP3

 AfterLogic Forum : MailBee POP3
Subject Topic: working with Saved RawBody Post ReplyPost New Topic
Author
Message << Prev Topic | Next Topic >>
Guests
Guest Group
Guest Group


Joined: 10 November 2003
Online Status: Online
Posts: 262
Posted: 18 June 2004 at 5:10pm | IP Logged Quote Guests

If I save a message in a DB Table using the RawBody contents, how do I get the rawbody back into a Message?
Back to Top View Guests's Profile Search for other posts by Guests
 
Alex
AfterLogic Support
AfterLogic Support
Avatar

Joined: 19 November 2003
Online Status: Offline
Posts: 2206
Posted: 19 June 2004 at 12:31pm | IP Logged Quote Alex

You can load the content back in RawBody property:

Set Msg = CreateObject("MailBee.Message")
Msg.RawBody = strMessageDataFromDataBase

' Now the message is loaded.

' Display message's subject
MsgBox Msg.Subject


If you want to resend this message with SMTP object, you can do this in the same way:

...
SMTP.Message.RawBody = strMessageDataFromDataBase
SMTP.Send
Back to Top View Alex's Profile Search for other posts by Alex
 

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