Am new to php and I want to know, is there any way by which I can send sms using my php script? I want to send confirmation code while using signup to mobile device instead of email.
Sample code to send text messages written using php. This code requires phpmailer class. You can download free phpmailer from http://phpmailer.sourceforge.net/. This code is provided as sample only.
PHP Code:
<?php require("class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP(); // set mailer to use SMTP $mail->Host = "your service provider.com"; // specify main and backup server $mail->SMTPAuth = true; // turn on SMTP authentication $mail->Port =25; $mail->Username = "Your service provider Username"; // SMTP username at ipipi $mail->Password = "YourPassword"; // SMTP password