hello,
About a year ago I wrote a program that check for something new and making 
an event with sms reminder in the calendar.
It works well until last week (actually I didn't use that program for months 
until last week).
 - I don't get any sms (some bug in the reminder's system).

more details:
 - If I make an event with reminder manually in the calender. it will send 
the sms.
 - After the program sends the request, you can see the event with the 
reminder in the calendar, however, you still dont get the sms.

I hope someone can help me.

sincerely,
Haim Levy.

P.S. the reminder code:

EventEntry messege = new EventEntry();
messege.Title.Text = Text;
When now = new When(DateTime.Now.AddSeconds(80), DateTime.Now.AddHours(1));

messege.Times.Add(now);
Reminder sms = new Reminder();
           sms.Minutes = 1;
           sms.Method = Reminder.ReminderMethod.sms;
           messege.Reminders.Add(sms);

-- 
You received this message because you are subscribed to the Google
Groups "Google Calendar Data API" group.
To post to this group, send email to
[email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://code.google.com/apis/calendar/community/forum.html

Reply via email to