This shows you the differences between two versions of the page.
— |
mailtosms_multi [2016/06/14 16:35] (current) |
||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ===== Forwarding emails via SMS to multiple recipients ===== | ||
+ | This guide illustrates how to forward an email to multiple SMS recipients, using the SMS gateway. | ||
+ | The first step is to place the script //email2smsmult//, downloadable [[http://www.kdev.it/email2smsmult|here]], inside of the folder// /etc/sms/scripts/ //. | ||
+ | \\ Remember to make it executable, giving it right permissions. | ||
+ | |||
+ | Then you have to replace the link to the older script in // /etc/.procmailrc //with the new one: | ||
+ | <code> | ||
+ | Original: /etc/sms/scripts/email2sms | ||
+ | Modified: /etc/sms/scripts/email2smsmult | ||
+ | </code> | ||
+ | |||
+ | Finally, you have to create the files needed by the script (giving them right permissions) using the commands: | ||
+ | <code> | ||
+ | touch /var/log/iterator.txt | ||
+ | touch /var/log/numbers.txt | ||
+ | touch /var/log/numbers1.txt | ||
+ | </code> | ||
+ | |||
+ | To complete the installation, reboot the device. | ||
+ | |||
+ | Now, every time you will send an email like the one in the example below, it will be automatically forwarded via SMS to all the recipients listed: | ||
+ | <code> | ||
+ | Subject: | ||
+ | TOsms | ||
+ | |||
+ | Body: | ||
+ | From: YOURNAME | ||
+ | To: NUM1,NUM2,NUM3,... | ||
+ | |||
+ | Text of the message | ||
+ | </code> | ||
+ | |||
+ | :id1: Remember to activate the "SMS gateway" from the Control Panel. |