This is the right solution.Get a notification by SMS to your mobile..And this is only for Gmail users
I have illustrated the whole procedure with pictures.Quite long;but damn easy..
Just follow me
Creating a Lable
1. Log in to your Gamil account
2. Click on gear icon and go to settings
3. Now go to Lables and create new lable
4. Name the new lable as Notifyme and create it
Creating a lable is over..
Creating a Filter
1. Go to Filters tab & click on New Filter
2. Type is:inbox in Has the words box and click on Create filter with search
3. Now select these in next coming up window
4. Now Create the filter.You are done in filter.
Creating Script on Google Drive
1. Go to Google Drive and Create a Spreadsheet.
2. Now go to Tools.Then to Script editor
3. Now close this popup
4. Now erase the original code and paste this code given below
/*Original Script by Romain Vialard
Modified by Mr. Neeraj Jindal*/
function
notifyMe() {
try
{
var
label = GmailApp.getUserLabelByName(
'notifyMe'
);
var
threads = label.getThreads();
var
now =
new
Date().getTime();
for
(i
in
threads) {
CalendarApp.createEvent(threads[0].getFirstMessageSubject()+
": "
+threads[0].getMessages()[0].getFrom(),
new
Date(now+30000),
new
Date(now+30000)).addSmsReminder(0);
}
label.removeFromThreads(threads);
}
5. Now got to Resources,then to Current script triggers
6. Save the project as I have done.(Project name-Notify)
7.Now complete the next coming up window as done in the picture
8.Click Authorize and then Grant Access.
Creating script is over..
Verifying The Mobile Number
1. Go to calender
2. Go to settings
3.Go to Mobile setup tab
Select your country
Enter your mobile number without country code
Click on send verification code
Now enter the verification code in box no.5
Then finish the set up and click save
4.Now got to the Calendar tab and click on the Reminders and notifications link.
6. Save it
You are done..Now gets a sms notification asap you receive new Email.
This is 100% working and was tested by me..
Like this...Share on Facebook or G+
Enjoy.....
..and what are you using now because this method does not appear to work anymore. Sure the calendar event gets created and the label gets removed but a sms is not being triggered.
ReplyDelete