A Swift package that connects to the Postmark API to reliably send emails.
Although a basic email can be sent at this point, a lot of functionality is still being developed. APIs might change.
Only SwiftPM is supported at this time.
To add the package, simply select File
/ Add Packages...
in Xcode and paste this URL into the search / url box: https://github.com/aronbudinszky/postmark-swift
.
Since PostmarkSwift uses the new async/await API, it will require at least iOS 13 or macOS 12.
// Create client and send
let client = PostmarkSwift.Client(serverToken: "your-server-token")
// Create an email message
let message = PostmarkSwift.OutgoingEmail(
from: "[email protected]",
to: "[email protected]",
subject: "Hello",
textBody: "World!"
)
// Send it and report the results
let result = try await client.send(message)
print("Message was submitted for sending at \(result.submittedAt) to recipient(s) \(result.to) with ID \(result.messageID)")
If there are any problems with your request the appropriate error will be thrown when you try to send.
You can also send HTML messages, like so:
// Create an email message
let message = PostmarkSwift.OutgoingEmail(
from: "[email protected]",
to: "[email protected]",
subject: "Hello",
textBody: "World!",
htmlBody: "<strong>World!</strong>"
)