Compare commits
2 Commits
06cfc97ebd
...
6c47b9ddec
| Author | SHA1 | Date | |
|---|---|---|---|
| 6c47b9ddec | |||
| ec5c3999ab |
@ -13,7 +13,7 @@ Imports System.Runtime.InteropServices
|
||||
<Assembly: AssemblyCompany("")>
|
||||
<Assembly: AssemblyProduct("DigitalData.EMLProfiler")>
|
||||
<Assembly: AssemblyCopyright("Copyright © 2025")>
|
||||
<Assembly: AssemblyTrademark("3.0.10.0")>
|
||||
<Assembly: AssemblyTrademark("3.1.0.0")>
|
||||
|
||||
<Assembly: ComVisible(False)>
|
||||
|
||||
@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
|
||||
' übernehmen, indem Sie "*" eingeben:
|
||||
' <Assembly: AssemblyVersion("1.0.*")>
|
||||
|
||||
<Assembly: AssemblyVersion("3.0.10.0")>
|
||||
<Assembly: AssemblyFileVersion("3.0.10.0")>
|
||||
<Assembly: AssemblyVersion("3.1.0.0")>
|
||||
<Assembly: AssemblyFileVersion("3.1.0.0")>
|
||||
|
||||
@ -997,6 +997,16 @@ Public Class clsWorkEmail
|
||||
' Verarbeite Embedded Attachments
|
||||
WorkEmbeddedAttachments(oEmailAttachment, oGdPicturePDF)
|
||||
|
||||
' Prüfen ob es ungültige Anhänge gibt.
|
||||
Dim oEmbeddedAttachmentsNotValid As Boolean = EmailAttachments.
|
||||
Where(Function(att) att.EmbeddedFiles.Count > 0).
|
||||
Any(Function(emb) emb.EmbeddedFiles.Any(Function(ext) ext.IsAttachmentValid = False))
|
||||
|
||||
If oEmbeddedAttachmentsNotValid = True Then
|
||||
MESSAGE_ERROR = True
|
||||
Continue For
|
||||
End If
|
||||
|
||||
Else
|
||||
oAttachmentCount -= 1
|
||||
CleanUpFilePath(oEmailAttachment.DestFilePath)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user