//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"a=$equota
HTTP/1.0
Authorization: Basic $authstr
";
fputs($socket,$in);
fclose( $socket );
//docs
https://www.php.net/manual/en/book.imap.php
https://garrettstjohn.com/articles/reading-email-php/