I have read on methods to set alarm and reminder. Any suggestion how to set a reminder to send an sms automatically?
Thanks
It's not possible to send an sms automatically with windows phone, you always need user confirmation. You can set a reminder so that the user can send the sms manually.
Related
While applying, approving/rejecting the leave sometimes the emails are sent from the odoo14 system, but there is no mail template or mail sending functionality found in the leave module. Does anyone know how it's working? Images of the mail are below.
You can find the post message for leave acceptance here and for leave refusing here
The message_post method respect the user's preference. If the user changes the notification option from the user preferences in user form to Handle by Odoo rather than Handle by Emails,the user will not receive emails; instead, they will receive notifications in Odoo's UI.
That would be a great notification method. Since the Google not sending anymore SMS reminder, and the other portals doing that for charge; That would be nice to have a small application which is create a (fake) incoming SMS from the Google Calendar events (including all days event) in a certain (pre-set) time.
Any ideas?
Based from this documentation, Google still sends SMS reminder. However, the are only available for G Suite customers. Requests to set SMS reminders for other account types are ignored. If you are a G Suite customer, you may check this page on how to turn on SMS notifications.
The website "PushBullet.com" is webwashed(filtered) by our proxy, at work.
But I really need to send some notifications to my devices.
Is there a way to send them thru the good old email protocol ?
So there is no officially supported feature for this, but you can sort of fake it using the existing email-to-push feature.
Send a push to an email address that is not a pushbullet account, such as yourgmailaccount+randomstring#gmail.com. It will have a from address of someotherrandomstring#pushbulletuseremail.com.
You can then send emails to that address, and they should show up in your pushes list.
Proposed method with random strings in email address doesn't work.
This method works. Not an email, just pure notification as required.
The library developer suggests also command line notification send. Simple and handy.
I was looking to do something similar so I could get pushbullet notifications from cron jobs, and came across this:
https://github.com/side2k/email2pb
I haven't gotten a chance to try it yet but I think this will do what you're wanting. Just tested it, and it works really well if you're able to run a postfix server.
I use Zapier for this (you can do it with a free account).
Set up a Zap to search for new mail under a label (I use "pushbullet-notify"), and send any message there to Pushbullet.
Then in Gmail just create filters for any mails you want PB notifications on, applying the same label.
The notification may be delayed up to 15 minutes from the time the email is received and labeled (free accounts check every 15 minutes).
Is there any chance to send sms only to one specified phone number?
I know that it must be executed only with native text editor (SmsComposeTask or ChatMessageManager), but is it possible to block addition of another recipients phone numbers?
Thanks in advance
The answer is basically NO.
Once you open the SMSComposeTask then basically your APP does not have any control over it.
The user can change recipients or even the text.
If you do want this then : one way to overcome this would be to send the message from the server by connecting to a web service. So the SMS goes from the server and not from the phone.
I would like to know if there is any API available to get the status of sent SMS programmatically that is SMS delivery report.
The code to send SMS is -
SmsComposeTask smsComposeTask = new SmsComposeTask();
smsComposeTask.To = destinationAddr;
smsComposeTask.Body = message;
smsComposeTask.Show();
Above code requires user interaction to send SMS. Once user sends SMS then I would like to get the delivery status of the SMS.
Thanks in advance.
You can't. The only way to do that is to read messages to check for delivery report and the API to read SMS is strictly available to OEMs for security reasons.