Search found 3 matches

by DonJaiquito
05 Jun 2017 06:23
Forum: User Help / Bug Reports
Topic: 2 Problems - loop / sms gateway via http request
Replies: 1
Views: 5962

2 Problems - loop / sms gateway via http request

Hi, I am currently facing two problems: 1. I have a flow in which a 3 second sound file is played. I want it to play in a loop for several times. How can I loop only the action of playing the sound file? 2. I try to make an SMS Gateway using the http request trigger. It works when I call the mobile ...
by DonJaiquito
01 May 2017 07:31
Forum: User Help / Bug Reports
Topic: POST request content gets lost
Replies: 6
Views: 15720

Re: POST request content gets lost

Thank you! Using double quotes seems to work fine. I have got another question: Is it possible to forward an incoming email via sms or whatsapp? I imagine something like I write a mail with a telephone number as the subject and my message as the mail body and want automagic to use that mailbody and ...
by DonJaiquito
30 Apr 2017 12:05
Forum: User Help / Bug Reports
Topic: POST request content gets lost
Replies: 6
Views: 15720

POST request content gets lost

hi there, I wanted to use Automagic to forward sms messages to email. I wrote a tiny php script that is opened by automagic via http post. if ($_POST['type'] == "text") { $subject = "SMS erhalten"; $message = "Absendername: ".$_POST['name']."\nNummer: ".$_POST['number']."\nNachricht: ".$_POST['text'...