0
PHP Sending E-mails
Posted by jujur
on
5:23 AM
Bab 20
PHP Sending E-mails
PHP mengijinkan
kita untuk mengirim e-mail secara langsung dari program.
Fungsi mail()
Fungsi
mail() digunakan untuk mengirim e-mail dari program.
mail(to,subject,message,headers,parameters)
|
Parameter
|
Keterangan
|
to
|
Required. Specifies the receiver / receivers of the email
|
subject
|
Required. Specifies the subject of the email. Note: This
parameter cannot contain any newline characters
|
message
|
Required. Defines the message to be sent. Each line should be
separated with a LF (\n). Lines should not exceed 70 characters
|
headers
|
Optional. Specifies additional headers, like From, Cc, and Bcc.
The additional headers should be separated with a CRLF (\r\n)
|
parameters
|
Optional. Specifies an additional parameter to the sendmail
program
|
Catatan: Agar
fungsi mail dapat bekerja, PHP memerlukan sistem e-mail yang telah terpasang
pada sistem. Program e-mail didefinisikan pada file php.ini.
PHP Simple E-Mail
Cara
yang paling sederhana untuk mengirim e-mail adalah dengan mengirim file teks.
Pada
contoh di bawah ini kita peratam kali akan mendeklarasikan variabel-variabel
sebagai berikut ($to, $subject, $message, $from, $headers), kemudian kita akan
menggunakan variabel pada fungsi mail() untuk mengirim e-mail.
Program20-1.php
<?php
$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.";
?>
|
Form Mail PHP
Dengan
menggunakan PHP, kita dapat membuat feedback form pada situs internet. Contoh
di bawah ini akan mengirimkan pesan teks ke alamat e-mail yang telah
ditentukan.
Program20-2.php
<html>
<body>
<?php
if (isset($_REQUEST['email']))
//if "email" is filled out, send email
{
//send email
$email = $_REQUEST['email'] ;
$subject = $_REQUEST['subject'] ;
$message = $_REQUEST['message'] ;
mail( "someone@example.com", "Subject: $subject",
$message, "From: $email" );
echo "Thank you for using our mail form";
}
else
//if "email" is not filled out, display the form
{
echo "<form method='post' action='mailform.php'>
Email: <input name='email' type='text' /><br />
Subject: <input name='subject' type='text' /><br />
Message:<br />
<textarea name='message' rows='15' cols='40'>
</textarea><br />
<input type='submit' />
</form>";
}
?>
</body>
</html>
|
Keterangan program di atas:
- Pertama, periksa apakah field input email telah terisi.
- Jika belum, tulis output ke form html.
- Jika sudah, kirim e-mail dari form.
- ketika tombol submit ditekan setelah form selesai diisi, halaman akan me-reload, kemudian akan melihat apakah input email telah diisi dan mengirimkan email tersebut.