Author |
|
jvinis Newbie
Joined: 20 May 2008
Online Status: Offline Posts: 18
|
Posted: 18 December 2008 at 1:34am | IP Logged
|
|
|
I have to convert my application to use newer version of MailBee components.
My working version is
MailBee.NET.dll version 3.1.2.90
and i have download the
MailBee.dll version 5.5.0.133 from http://www.afterlogic.com/updates/mailbee.zip
Changes i found
Dim Msg As New MailMessage()
i converted to:
Dim Msg As New MailBee.Message()
For Each Attch As MailBee.Mime.Attachment In Msg.Attachments
i converted to:
For Each Attch As MailBee.Attachment In Msg.Attachments
Msg.Parser.SetHtmlOutputMode()
Msg.Parser.PlainToHtmlOptions = PlainToHtmlConvertOptions.UriToLink
How can i converted this to work ???
Msg.Priority = MailPriority.Normal
Msg.Importance = MailPriority.Normal
How can i converted this to work ???
Msg.Attachments.Add(file)
i converted to:
Msg.AddAttachment(file)
Msg.Date.AddMinutes(intMinutes).ToString("yyyyMMdd HH:mm:ss"))
i converted to:
Msg.GetDateFromString(Msg.Date).AddMinutes(intMinutes).ToStr ing("yyyyMMdd HH:mm:ss"))
Dim sb As New StringBuilder()
For Each hdr As Header In Msg.Headers
sb.AppendLine(hdr.Name + ": " + hdr.Value)
Next
How can i converted this to work ???
For Each ea As MailBee.Mime.EmailAddress In mMail.To
.....
Next
How can i converted this to work ???
For Each ea As MailBee.Mime.EmailAddress In mMail.Cc
.....
Next
How can i converted this to work ???
Please answer me asap.....
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 18 December 2008 at 2:54am | IP Logged
|
|
|
We are not sure we understood what exactly you are trying to do. You said you currently have .NET version of MailBee Objects, but you've downloaded an ActiveX version, which is totally different product.
If you'd like to upgrade your MailBee.NET Objects installation, you can download the latest version here. The latest beta version is available here.
Regards,
Igor
|
Back to Top |
|
|
jvinis Newbie
Joined: 20 May 2008
Online Status: Offline Posts: 18
|
Posted: 18 December 2008 at 3:19am | IP Logged
|
|
|
Sorry!!! Wrong components.
I try the right components now
|
Back to Top |
|
|