In an app, I want to use Google Calendar. Now my requirement is I get the mail id and events from the user. And now i want to display those events (events means user given in my app) into that particular given mail id (username mail calendar). But without using iphone ical. I want to directly add to the particular mail calendar. (for instance: mail id: xx#gmail.com, event: "title:"meeting" on date: "6-2-2013"" - I get this information from my app). Now i want to go into that xxx#gmail.com and i want to show the events (meeting on 6-2-2013) in that mail calendar. How can i do this without using iCal?
Related
We use the Google Suite for corporate email, calendar etc. What I am trying to achieve here is, I need to be compose an email in gmail with a link to a calendar invite. I would also be able to fill in the details of the meeting through the invite which is embedded in the email. For example, I should be able to send an invite to xyz at company.com with subject Meeting to discuss status and with the body of Test Message. Is there a way I can do that?
I think the best way to do it is just use standard invitation. You just simply add new calendar event and set guests:
Open Google Calendar
Open an event, or create a new one. Specify event title and description - it will be then stated in the invitation email...
On the right, find the "Guests" section.
Start typing the name of the person and choose someone from your contacts. You can also type an email address to invite people who aren't in your contacts list.
When you're done editing your event, click Save.
When you save your event, an email invitation will be sent to your guests.
What is also good, there is .ics file in attachment of invitation email - can be useful for non google recipients using another email clients.
However, if you need URL of the event, you can get it on the event edit page in google calendar - there is a link on the bottom of the page: "publish event" - you can copy the link of the event there. But please be aware that the Google calendar the event is tied to needs to be public (or shared with the recipients), and not just the event itself. (This link is useful for google calendar users...)
Using O365, i want to be able to send an SMS to a specific mobile number automatically after recieving an e-mail from a specific sender with a specific subject.
What is the best way to do this?
First, you need to set up the mobile number as so:
Open Outlook Web Access in your browser. The standard address is usually: https://mail.yourcompanydomain.com/owa. It’s important to note that you need to go to Outlook Web Access.
Log in using your Office 365 username and password.
Select Options – located in the top-right of the window – followed by See All Options.
Click Phone from the list on the left side of the window and then Text Messaging.
Pressing Turn on Notifications, selecting your Locale: and finally your Mobile Operator.
Press Next and enter your phone number with the area code, and without the country code.
Click Next again and check your phone. You should get a pass code in a text message that you will need to enter. After you receive this, press Finish.
Now you are ready to set up email notifications using an Inbox rule Those rules are based on your criteria, whether based on sender or content :)
I am creating a reminder application that will allow users to remind user to send sms or email. at any day in the future.For example a user wants that the app reminds it for the birthday of a friend in the future.So the app would remind the user that day and show the user some prestored text to send as sms or email.
Can you suggest a good way to schedule these reminders for my app?
One of the ways I came up with was to schedule local notifications each day but I don't know if that would work.
Instead of querying my server every x minutes for changes in my Google Contacts I rather like a certain URL to be called when a contact has been added, updated or removed either through GMail or my iPhone.
Is there a way I can register callbacks to do so?
For instance, at this point I added my GMail account to my iPhone and iMac. When I open the Contacts.APP I can see all my Gmail contacts. When I add a contact it will automatically be updated on my iPhone, on my iMac and in the GMail webinterface. However, I like to know when such an event occurs to run additional tasks through the Google Contacts API.
Please provide me the code for sending sms on a particular Date and time in iphone.
Please suggest me the best way to do this.
I want to send sms after saving value in sqlite database like ph no. name, message.
Thanks in advance.
Apple has gone far and gave the programmers a way to present the end user with an SMS sheet (just like an e-mail sheet) , that they will have to approve (press send) in order to send SMS from a 3rd party app.
The reasons are mainly user privacy (as some apps on Android actually send SMSs on the user's behalf).
The best thing to do , in this case, is :
Create a local notification , that will remind the user that they need to send an SMS.
Upon launch (application:didFinishLaunchingWithOptions) present the user with a prepared SMS sheet , so they'll just need to tap 'send'.
For more info , look at MFMessageComposeViewController class reference.