
Signature
Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm
>Do you use Outlook or Outlook express
No fear.
>Do you want to send the same mail to all people or do you want to personalize the mail
Personalized with name.
I was looking for something similar to the php code I normally use.
<?php
// Your email address
$email = "you@example.com";
// The subject
$subject = "Enter your subject here";
// The message
$message = "Enter your message here";
mail($email, $subject, $message, "From: $email");
echo "The email has been sent.";
?>
Ron de Bruin - 30 Apr 2007 18:16 GMT
Try this example
http://www.rondebruin.nl/mail/folder3/message.htm

Signature
Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm
>>Do you use Outlook or Outlook express
>
[quoted text clipped - 16 lines]
> echo "The email has been sent.";
> ?>