@Crusiatus Black
23-May-2008 05:00
Code below works without errors
<?php
$Name = "Da Duder"; //senders name
$email = "email@adress.com"; //senders e-mail adress
$recipient = "PersonWhoGetsIt@emailadress.com"; //recipient
$mail_body = "The text for the mail..."; //mail body
$subject = "Subject for reviever"; //subject
$header = "From: ". $Name . " <" . $email . ">\r\n"; //optional headerfields
mail($recipient, $subject, $mail_body, $header); //mail command :)
?>
- Introduction
- Installing/Configuring
- Predefined Constants
- Mail Functions
- ezmlm_hash — Calculate the hash value needed by EZMLM
- mail — Send mail
dev at realynospamspcweb dot nl
22-Aug-2008 10:16
22-Aug-2008 10:16
