Nasıl php sonra e-posta şablon tasarımı eklemek kullanarak bir e-posta gönderebilir miyim? Ben bu kullanıyorum:
$to = "someone@example.com";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "someonelse@example.com";
$headers = "From: $from";
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
Ve gayet iyi çalışıyor! Sorun bir şablon eklemek için ne olduğunu.