Auto SMS respond only for domestic calls

stabiloboss

New member
Hello.
I'm a beginner to MacroDroid, is it possible to make it only reply for domestic calls (text to all contacts, unknown numbers, new numbers when a missed call happens)?
In triggers I've picked “select number” then I've added {mcc}260 to triggers (for calls from Poland). But it doesn't work.
I would like auto SMS respond after a missed call not to be sent to people calling from abroad.
trigger.jpg
 

hsurB

Well-known member
You have to use +48* in call missed trigger.
Then the macro fires for each missed call from number starting with +48
I am from Poland, so if you needed more detailed help in your language hit me up with a message here.
 

Dm114

Well-known member
Hello.
I'm a beginner to MacroDroid, is it possible to make it only reply for domestic calls (text to all contacts, unknown numbers, new numbers when a missed call happens)?
In triggers I've picked “select number” then I've added {mcc}260 to triggers (for calls from Poland). But it doesn't work.
I would like auto SMS respond after a missed call not to be sent to people calling from abroad.
View attachment 7738
If you reject calls manually, follow @Brush's advice.

If you want to reject them programmatically, you could do this:
T: Call Incoming > Any number
A: If {call_number} = +48* then
Rejet call
Send SMS
Endif
 
Top