Oops, you can't send emails to a noreply address

This commit is contained in:
2026-02-17 00:25:24 -05:00
parent 0c07c509f3
commit 420f49cafc
2 changed files with 5 additions and 5 deletions

View File

@@ -40,7 +40,7 @@ struct MailView: UIViewControllerRepresentable {
func makeUIViewController(context: Context) -> MFMailComposeViewController {
let vc = MFMailComposeViewController()
vc.mailComposeDelegate = context.coordinator
vc.setToRecipients(["58050615+NinjaCheetah@users.noreply.github.com"])
vc.setToRecipients(["campbell@ninjacheetah.dev"])
vc.setSubject("TigerDine Feedback")
//vc.setMessageBody("", isHTML: false)
return vc