Ben sitemize kurulum anonim bir geri bildirim formu bir proje var. Ben php ile ona gitmek istedim
genel bir fikir geri besleme ve bir düğme için bir alan (bizim çalışanlarımıza vermek) bir parola alanı olurdu olduğunu
Ive Bu kod parçacığını gördük
<?php
$to = "recipient@example.com";
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";
if (mail($to, $subject, $body)) {
echo("<p>Message successfully sent!</p>");
} else {
echo("<p>Message delivery failed...</p>");
}
?>
Bu yüzden oturum ve e-posta sunucusu gerekir (i yok yere açık bir sunucu değilse) Ama (benim durumumda sunucu Gmail'in) ben sadece e-posta göndermek değil ki benim sınırlı anlayış e-posta sistemleri ile oldukça emin im
bu yüzden bu nasıl yapardın?
update:
the code above does work but it doesn't come from a corporate account we currently use Google biz apps and that's why I would like to log on to a Google server to send this out.