SwiftUIMessage

0.0.3

SwiftUI wrapper of MessageUI framework.
edonv/SwiftUIMessage

What's New

v0.0.3

2023-06-22T14:00:08Z

Full Changelog: 0.0.2...0.0.3

Missed making MailComposeView.canSendMail() static function public. This was missed because it doesn't cause any errors when building internally. Thanks to #1 for finding this problem.

SwiftUIMessage

SwiftUI wrapper of MessageUI.

Documentation

Documentation for SwiftUIMessage is hosted on Swift Package Index.

Usage Notes

Always be sure to call MailComposeView.canSendMail() and MessageComposeView.canSendText() in-line to confirm that you can actually use them on that device. And graphical glitches may occur if you don't include the .ignoresSafeArea() view modifier.

It's generally best to use them in a .sheet() modifier, but the code below is just for the sake of example.

Examples

MailComposeView

// This will return false if the device cannot use Apple Mail.
if MailComposeView.canSendMail() {
    MailComposeView(
        .init(subject: "Subject",
              toRecipients: [
                  "dummy@gmail.com"
              ],
              ccRecipients: nil,
              bccRecipients: nil,
              body: "This is an example email body.",
              bodyIsHTML: false,
              preferredSendingEmailAddress: nil)
    )
    .ignoresSafeArea()
} else {
    // Here you can tell the user the issue, or maybe launch the URL scheme to open the default mail app (which wouldn't be Apple Mail).
    Text("Mail cannot be sent from your device.")
}

MessageComposeView

if MessageComposeView.canSendText() {
    MessageComposeView(
        .init(recipients: [
                  "111-111-1111",
                  "+1-111-111-1112"
              ],
              subject: "This is an MMS subject line, but it won't be inlcuded if the device doesn't have them enabled.",
              body: "This is an SMS text body.")
    )
    .ignoresSafeArea()
} else {
    // Here you can tell the user the issue.
    Text("Text messages cannot be sent from your device.")
}

Description

  • Swift Tools 5.7.0
View More Packages from this Author

Dependencies

  • None
Last updated: Tue Apr 23 2024 04:19:13 GMT-0900 (Hawaii-Aleutian Daylight Time)