postmark-swift

main

A Swift package that connects to the Postmark API to reliably send emails.
aronbudinszky/postmark-swift

PostmarkSwift

A Swift package that connects to the Postmark API to reliably send emails.

WARNING! This package is work in progress

Although a basic email can be sent at this point, a lot of functionality is still being developed. APIs might change.

Supported platforms Swift versions

Add the package

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 .

Send your first message

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: "you@yourcompany.com",
    to: "user@example.com",
    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.

Send an HTML message

You can also send HTML messages, like so:

// Create an email message
let message = PostmarkSwift.OutgoingEmail(
    from: "you@yourcompany.com",
    to: "user@example.com",
    subject: "Hello",
    textBody: "World!",
    htmlBody: "<strong>World!</strong>"
)

Description

  • Swift Tools 5.5.0
View More Packages from this Author

Dependencies

  • None
Last updated: Sun Mar 10 2024 17:24:32 GMT-0900 (Hawaii-Aleutian Daylight Time)