i working with swift for osx. i have this code for sending mails:
let service = NSSharingService(named: NSSharingServiceNameComposeEmail)!
service.recipients = ["abc@domain.de"]
service.subject = "My Subject"
service.perform(withItems: ["My Message"])
but i would like attach a pdf file. how can i realize it ?