Yukarıdaki örneğe eklemek için, (eğer çok iyi PHP bilmiyorum), sadece değişkenleri kullanarak "e-posta" oluşturmak zorunda: konu, mesaj ve başlıkları, için
Eğer, bu PHP komut dosyası doldurmak ve çalıştırmak için bir form oluşturmak için, aksi takdirde sadece elle Bu dosyada her şeyi girebilirsiniz, bir PHP dosyası olarak kaydetmek, PHP destekleyen bir sunucu üzerinde kusmak nasıl bilmek istiyorsanız bana bildirin ve tarayıcınızda dosyasına gidin.
Here's the code:
// Setup recipients
$to = 'johndoe@google.com' . ',' // comma separates multiple addresses
$to .= 'janedoe@msn.com';
// subject
$subject = 'PHP Email Script - Test Email';
// message (to use single quotes in the 'message' variable, supercede them with a back slash like this--> \'
$message = '
<html>
<head>
<title>PHP Email Script</title>
</head>
<body>
<p style="background: #ccc; width: 100%;">Test Email Script</p>
</body>
</html>
';
// To send HTML mail, the Content-type header must be set
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
// Additional headers
$headers .= 'To: Mary <mary@example.com>, Kelly <kelly@example.com>' . "\r\n";
$headers .= 'From: Birthday Reminder <birthday@example.com>' . "\r\n";
$headers .= 'Cc: birthdayarchive@example.com' . "\r\n";
$headers .= 'Bcc: birthdaycheck@example.com' . "\r\n";
// Send the email
mail($to, $subject, $message, $headers);