Tanuj
December 17, 2015, 10:59am
1
Like Email Alert, is there any way to send an SMS alert when certain criteria is fulfilled?
(example: Customer gets acknowledgement SMS when Sales Order is submitted)
If not, could you point me to the ERPNext documentation I can read to do this via Client side (or Server side) scripting?
Thank You!
1 Like
rmehta
December 18, 2015, 7:12am
2
@Tanuj not out of the box as of now.
Tanuj
December 18, 2015, 7:25am
3
@rmehta
Is there any way I can duplicate the Email Alert module and replace the Emails with SMS-es?
Hi Tanuj,
Everything is possible but nothing out of the box atm.
However, there are plenty of services exist that will convert your email into sms such as these
Send email to text with our SMS gateway service. Use your own email app to send thousands of texts, SMS marketing campaigns, alerts, and more.
4 Likes
Tanuj
December 18, 2015, 7:37am
5
Hi @ferohers ,
That could work! Thanks so much!
adam26d
November 27, 2018, 6:45pm
6
Hey @Tanuj
How did you resolve this issue ?
wale
November 28, 2018, 7:14am
7
This really should be a standard feature
Kind regards,
4 Likes
Its 2020 , and its still not there.
Just a followup on this.
Regards
SMS alert is a basic requirement for retail sector. Especially for supermarket like ours. Hope this becomes standard feature soon.
1 Like
Just a reminder with open source one can contribute to scratch the itch here!
1 Like
The best I can do is to help test it!. I’m on cloud hosting. Don’t have money to fund development. Sorry.
Tanuj
March 20, 2020, 11:50am
13
Hey @HaroldOsprey ,
You can call the send_sms method using custom script. The call would look like this (assuming you’ve already setup sms in settings) :
var message= ***[Add message here]***
frappe.call({
method: "frappe.core.doctype.sms_settings.sms_settings.send_sms",
args: {
receiver_list: ***[add numbers here]***,
msg: message,
},
callback: function(r) {
if(r.exc) {msgprint(r.exc); return;
console.log(message)}
}
});
Parvez
May 20, 2021, 11:13am
14
Where can I get this file to edit?
@rmehta ?
Is it still out of the box as of now.