diff --git a/apple/OmnivoreKit/Sources/App/Views/Profile/NewsletterEmailsView.swift b/apple/OmnivoreKit/Sources/App/Views/Profile/NewsletterEmailsView.swift index 3c3752e70..4e930e4fa 100644 --- a/apple/OmnivoreKit/Sources/App/Views/Profile/NewsletterEmailsView.swift +++ b/apple/OmnivoreKit/Sources/App/Views/Profile/NewsletterEmailsView.swift @@ -83,7 +83,10 @@ struct NewsletterEmailsView: View { Section(header: Text("Existing Emails (Tap to copy)")) { ForEach(viewModel.emails) { newsletterEmail in Button( - action: { UIPasteboard.general.string = newsletterEmail.email }, + action: { + UIPasteboard.general.string = newsletterEmail.email + NSNotification.operationSuccess(message: "Email copied") + }, label: { Text(newsletterEmail.email) } ) }