i want to make app to capture SMS content and send it directly to specific gmail without any share button
i want to know how to implement this app or the function
I'm currently developing a chat app that allows the invite Friend to share a message to certain selected apps
You can use the share_plus package.
https://pub.dev/packages/share_plus
Eg:
Share.share('check out my website https://example.com', subject: 'Look what I made!');
I added schema.org EventReservation markup as documented here to the purchase confirmation emails for my e-commerce ticketing site. The event now appears above the email in my desktop Gmail inbox:
However, when I open the email in the Mail app on my iPhone, I don't get an option to add this event to my calendar. The Calendar app says that I have no invitations in my Inbox. Is there a separate API or registration process to make my event invitations work with the iOS Mail and Calendar apps?
With imessage, is there any API or service provided by Apple that can be used to send SMS, image & video from within an app?
No you can't directly use iMessage, you can use the MFMessageComposeViewController to send a SMS.
If the system then detects if the other user supports iMessage the SMS will be send via iMessage.
You can't force a message to send via iMessages.
Also there is no support for sending images or videos in a message via the MFMessageComposeViewController. Because MFMessageComposeViewControlleronly support SMS which does not support images or videos.
Use MessageUI framework and use
MFMessageComposerDelegate for SMS and
MFMailCoposerDelegate for email.
all it's provided by apple
Use MFMessageComposeViewController to send sms from app
I am writing a camera application for iPhone, and I want to send edited images via Whatsapp Messenger.
How can I send images via whatsapp messenger from my own application?