Hi,
I have tried to use the code below to sent an SMS from my website using Clickatell but i am noit getting them.Where do you think am going wrong? Please advice.
<?php
$cell=$_POST["number"];
$message="api_id:xxxxxx\r
user:xxxxxx\r
password:xxxxx\r
to:$cell\r
reply:email@domain\r
text:SMS from Website";
if(mail($to="sms@messaging.clickatell.com",$subject,$message)){echo"Messgae Sent";}
else{echo"Message not sent";}
?>