EmailClientHelper

1.0.1

Swift helper package to send an email using 3rd party apps
infinitepower18/EmailClientHelper

What's New

EmailClientHelper v1.0.1

2024-05-03T16:10:45Z

Removed Mac Catalyst support as the Outlook URL scheme doesn't work with the macOS version.

GitHub

EmailClientHelper

A simple helper package to send an email using 3rd party email clients. Supported clients include Gmail, Outlook and Yahoo Mail.

Currently, the package only supports iOS and visionOS.

You will also need to add this in your app's Info.plist:

<key>LSApplicationQueriesSchemes</key>
<array>
  <string>googlegmail</string>
  <string>ms-outlook</string>
  <string>ymail</string>
</array>

ko-fi

Usage

To check if the Gmail app is available on the user's device:

if EmailClientHelper.isClientAvailable(.gmail) {
    return true
} else {
    return false
}

To send an email using the Gmail app:

EmailClientHelper.sendEmail(client: .gmail, to: "example@example.com")

Description

  • Swift Tools 5.10.0
View More Packages from this Author

Dependencies

  • None
Last updated: Wed May 15 2024 08:46:46 GMT-0900 (Hawaii-Aleutian Daylight Time)