sunucum phpmail'i devredışı bıraktığı için bana smtp maili önerdi fakat alttaki kodu nasıl smtp mail'e dönüştürebilirim ?

$ad_soyad = $_POST["ad_soyad"];
$tel = $_POST["tel"];
$email = $_POST["email"];
$mesaj = $_POST["mesaj"];
$adres = "mail@adresim.com"; // Buraya e-postanin gonderilecegi mail adresini yaziniz
$konu = "iletisim formu";
$tarih = date('Y-m-d');
$ip_adresi = $_SERVER['REMOTE_ADDR'];

if(($ad_soyad=="") or ($tel =="") or ($email=="") or ($mesaj=="")){

header("Location: mesajgonderilmedi.html");

}
else
{

$mesajveri.="Ad-Soyad: ".$ad_soyad."
";
$mesajveri.="E-Mail: ".$email."
";
$mesajveri.="Telefon: ".$tel."
";
$mesajveri.="Mesaj: ".$mesaj."
";
$mesajveri.="Tarih: ".$tarih."
";
$mesajveri.="IP Adresi :".$ip_adresi."
";

$mesajyolla = mail($adres, $konu, $mesajveri, "Content-type: text/html; charset=utf-8\r\n");

if($mesajyolla)
{

header("Location: mesajgonderildi.html");

}
else
{

echo "
E-Mail gonderilirken hata olustu! Lutfen daha sonra tekrar deneyiniz.
";

}
}

?>