Action

Message Cousins

Posted by @nahumck, Last update over 5 years ago - Unlisted

Open up the dictation interface to speak your message, then send to a specified group.

Note: change the phone numbers in the script step to your group contact numbers.

Steps

  • script

    var text = editor.dictate()
    
    if (text.length > 0) {
    	var msg = Message.create();
    	msg.toRecipients = ["1111111111","2222222222","3333333333","4444444444"];
    	msg.body = text;
    	var success = msg.send();
    }
    
    else {
    	app.displayErrorMessage("No Text Input")
    }

Options

  • After Success Default
    Notification Info
    Log Level Info
Items available in the Drafts Directory are uploaded by community members. Use appropriate caution reviewing downloaded items before use.