Author |
|
johntang Newbie
Joined: 02 March 2015 Location: Germany
Online Status: Offline Posts: 2
|
Posted: 25 March 2015 at 5:31am | IP Logged
|
|
|
Hello Mailbee supporter.
We're using Mailbee.Net 9.0 for our VB.Net Application. But our Customer always claim about the attachment is not showing on Email, but from Outlook it's showing.
We have the route for email attachment.
- We skip show as attachment when it's Embed image on the body.
So, the main problem is coming from this function for checking Embed image or not.
Followed by the: http://www.afterlogic.com/support/tutorials-mailbee/7-embedding-images-and-files.asp, we have:
If att.ContentID Is Nothing OrElse String.IsNullOrEmpty(att.ContentID) Then
Return True
Else
' Contain ID
If Not IsImageFile(att.Filename) Then
Return True
End If
End If
- att is Attachment object.
What is the special case that our Customer got:
1. They attachment PDFs file, but it's contain ContentID, so attachments are not showing.
2. The attachment is not embed, checked with outLook, but they have ContentID, so attachments are not showing.
Please tell us, how it working as expert? like outlook at least?
Looking for reply.
Regards,
John
|
Back to Top |
|
|
Alex AfterLogic Support
Joined: 19 November 2003
Online Status: Offline Posts: 2206
|
Posted: 25 March 2015 at 6:06am | IP Logged
|
|
|
The tutorial you're referring to is for ActiveX version, not for .NET version while you're using .NET version. Therefore it's hard to understand what exactly you're doing. It's not even clear if the issue is with sending an email or viewing an email. Please clarify. Thanks!
Regards,
Alex
|
Back to Top |
|
|