SMTPSecureSocket

Email attachments do not work in Smtpsecuresocket, in the incoming mail i can only see a attachement but this is empty, even with the Email SSL Example.
Only with the smtpsocket works.
It’s a bug?

Mail SSL Example

[code] // add attachments
If fileFld.Text <> “” Then
file = New EmailAttachment
file.LoadFromFile(GetFolderItem(fileFld.Text))
mail.Attachments.Append(file)
End If

// send the email
MailSocket.Messages.Append(mail)
MailProgress.Visible = True
MailSocket.SendMail
[/code]

On my OSX 10.10 works only with:

file.LoadFromFile(GetFolderItem(fileFld.Text,FolderItem.PathTypeShell))