Swiftpack.co - schayes04/SupportEmail as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by schayes04.
schayes04/SupportEmail 4.8.0
Pre-populates emails with support information in iOS/iPadOS apps
⭐️ 20
🕓 2 years ago
iOS
.package(url: "https://github.com/schayes04/SupportEmail.git", from: "4.8.0")

SupportEmail

Platform CocoaPods Swift Version

Prepopulates emails with support information in iOS apps

About

SupportEmail is about simplifying support for apps. By prepopulating device information in your embedded support email link, you can save time and needless back and forth between you and your users. Check out Countdowns or Recurrence to see SupportEmail in action.

Requirements

  • Xcode 10.2+
  • iOS 10.0+
  • Swift 5.0+

Installation

Swift Package Manager

The preferred installation method is with Swift Package Manager. Starting with Xcode 11, you can add packages directly from the IDE.

CocoaPods

You can also install with CocoaPods. To do so, add the following to your Podfile:

pod 'SupportEmail', '~> 4.0'

Carthage

You can also install with Carthage. To do so, add the following to your Cartfile:

github "schayes04/SupportEmail"

Usage

Due to how MFMailComposeViewController works, you must retain a reference to SupportEmail outside of where you are sending the email.

var supportEmail: SupportEmail?

Using SupportEmail is simple and has just one method. send will allow you to craft the email and handle the end result:

supportEmail = SupportEmail()
supportEmail.send(to: ["[email protected]"], subject: "Support", from: self) { result, error in
    switch result {
    case .cancelled:
        print("Message cancelled")
    case .failed:
        print("Message failed")
    case .saved:
        print("Message saved")
    case .sent:
        print("Message sent")
    }
}

The send function takes 3 arguments:

  • An array of email address the support email should be sent to
  • The subject of the support email
  • The view controller the MFMailComposeViewController is to be presented on

Advanced

SupportEmail also supports providing custom arguments.

supportEmail.customFields = ["Pro Upgrade": "Yes"]

Customization

SupportEmail allows you to provide choose between sending a text file or just content in the email body. Defaults to sending as a text file. If you are sending as a text file you can also specify the file name.

supportEmail.sendAsTextFile = true
supportEmail.fileName = "Sample File Name"

SupportEmail allows you to provide a tintColor in order to customize the appearance of the navigation bar.

supportEmail.tintColor = .blue

SupportEmail allows you to provide a baseLocale in order to localize the system locale in the email. Defaults to en-US.

supportEmail.baseLocale = Locale(identifier: "es-US")

SupportEmail allows you to provide a bodyPrefix that adds a default body to the email

supportEmail.bodyPrefix = "Please add any relevant feedback:\n"

SupportEmail allows you to change the modalPresentationStyle. Defaults to .fullScreen.

supportEmail.modalPresentationStyle = .formSheet

License

This code is distributed under the terms and conditions of the MIT license.

GitHub

link
Stars: 20
Last commit: 2 years ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Release Notes

4.8.0
2 years ago
  • Added iPhone 13 identifiers
  • Added iPad 9th gen & iPad mini 6th generation identifiers

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics