I have script that sends a text message to CellPhones and on every cellphone that i have tested, it always add Forward Slash(/) at the beginning of the text message.
[php]$to = "[email protected]";
$message = “Hello Wolrd, This is a test”;
mail ($to , “” ,$message , string $additional_headers [, string $additional_parameters ]] );[/php]
the text message I receive from the above code:
/ Hello Wolrd, This is a test
Anyone Knows why is that? or What can i do to correct the issue?