NunoNeves
06-25-2005, 03:11 PM
Hi
I have an account at clickatell.com to send SMS using http, email, etc.
Do you know how can I setup ClientExec to send me a notification after the client signup?
This is how it must work:
Headers:
To: sms@messaging.clickatell.com
Body Text:
api_id:1234
user:Name
password:Secret
to:123456789
text:This is how to send an SMS using SMTP
More at http://www.clickatell.com/brochure/products/api_smtp.php
Thanks
Nuno
VN-Ken
06-26-2005, 02:49 AM
Hello Nuno,
You may want to contact ClientExec support, as I am sure they will be able to help you better than we can on here.
Thanks,
NunoNeves
06-26-2005, 04:35 AM
OK TheNetway
Thanks for you help
Nuno
VN-Ken
06-26-2005, 09:11 AM
No problem :) Good luck with what you are trying to find.
empresasdehosting
06-26-2005, 11:03 AM
do you have clientexec support forum access ?
http://www.clientexec.com/forum/
VN-Ken
06-26-2005, 11:08 AM
Oh, you know I just thought of something. Most cell phones use e-mail format addresses when things are done over the web (example, Verizon is phone_number@vtext.com), so I assume you could do the same, although you won't be able to read the whole message. I would recommend you put a forwarder on the e-mail account that notifications are sent to, and just add your cell phone txt e-mail to it.
Let me know if I need to better clearify myself.
NunoNeves
06-26-2005, 03:44 PM
Hi empresasdehosting
I do not have access to support.
I think I need to create a ticket.
TheNetway
Now we don't have because operators do not allow.
I'll post in ce support forum.
Thanks
Nuno
NunoNeves
06-26-2005, 07:38 PM
Ok
I manage to recive sms when someone signup :)
Advice ... BACKUP YOUR SIGNUP.PHP PAGE!!!
Open signup.php
Find "function SendOutNotifications"
Inside the function add:
If Using clickatell.com:
//ClickaTell
$sms_to = 'sms@messaging.clickatell.com';
$sms_subject = 'Sms';
$sms_text = 'api_id:xxxxxx' . "\r\n";
$sms_text .= 'user:xxxxxx' . "\r\n";
$sms_text .= 'password:xxxxxx' . "\r\n";
$sms_text .= 'to:0123456789' . "\r\n";
$sms_text .= 'text:New Signup';
mail($sms_to, $sms_subject, $sms_text);
If Using Mail:
mail('myphonenumber@operator', 'New Signup', 'New Signup');
That's it
Nuno
VN-Ken
06-26-2005, 08:55 PM
Glad to see you got it to work.
BoggeRs
06-26-2005, 09:44 PM
is there a company in the US or Canada that can do this?