Answers for "free sign up email varification with php"

PHP
0

cpanel email to email send with php

<?php

$to      = '[email protected]';

$subject = 'the subject';

$message = 'hello';

$headers = 'From: [email protected]' . "rn" .

    'Reply-To: [email protected]' . "rn" .

    'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $message, $headers);

?>
Posted by: Guest on September-22-2020
0

create an email addresses php

//Using Cpanel from StackOverflow
$socket = fsockopen($cpdomain,2082);
$cuser = "YourUserName";
$cpassword = "YourPassword";
$authstr = base64_encode("".$cpuser.":".$cppass."");
$in = "GET /frontend/$cpskin/mail/doaddpop.html?email=$euser&$edomain&password=$epass&quota=$equota
HTTP/1.0rnAuthorization: Basic $authstr rn";
fputs($socket,$in);
fclose( $socket );
Posted by: Guest on July-31-2020

Browse Popular Code Answers by Language