init(); ?> $_SESSION['m_user'],'html'=>$_POST['content'],'hash'=>$hash,'to'=>preg_split('/@/',$_POST['mail_r'])[0]]; $other=array( CURLOPT_URL => 'https://'.$split[1].'mailbox/reicive.php', CURLOPT_POST => true, CURLOPT_POSTFIELDS => $mail, CURLOPT_RETURNTRANSFER => true ); echo 'Sending sm to the url '.$split[1]; echo '
and to the mail id '.$split[0]; $curl=curl_init(); curl_setopt_array($curl, ($other)); $out=curl_exec($curl); echo curl_error($curl); if (curl_error($curl)){ header('Location: mailb.php?info='.L::errors_sslerror.' '.curl_error($curl)); } else{ $info=curl_getinfo($curl,CURLINFO_HTTP_CODE); if ($info==200){ header('Location: mailb.php?info='.L::errors_nonerror.''); } else{ header('Location: mailb.php?info='.L::errors_iderror_not.''); } } } elseif ($cnt==1){ $selfUrl=$_SERVER['HTTP_HOST'].preg_replace('/mailbox\/send.php/','',$_SERVER['PHP_SELF']); $query=mysqli_query($conn,'SELECT mail_password FROM mail WHERE mail_user="'.$_SESSION['m_user'].'"'); $hash=mysqli_fetch_array($query,MYSQLI_ASSOC)['mail_password']; $mail=['mail'=>$_SESSION['m_user'],'html'=>$_POST['content'],'hash'=>$hash,'to'=>$split[0]]; $other=array( CURLOPT_URL => 'https://'.$selfUrl.'mailbox/reicive.php', CURLOPT_POST => true, CURLOPT_POSTFIELDS => $mail, CURLOPT_RETURNTRANSFER => true ); echo 'Sending sm to the url '.$selfUrl; echo '
and to the mail id '.$split[0]; $curl=curl_init(); curl_setopt_array($curl, ($other)); $out=curl_exec($curl); echo curl_error($curl); if (curl_error($curl)){ header('Location: mailb.php?info='.L::errors_sslerror.''); } else{ $info=curl_getinfo($curl,CURLINFO_HTTP_CODE); if ($info==200){ header('Location: mailb.php?info='.L::errors_nonerror.''); } else{ header('Location: mailb.php?info='.L::errors_iderror_not.''); } } } } else{ header('Location: ../login.php'); } } ?>