hi , I used the most simple thing U could hope for, but it doesn't seem to work why? I have to fill in the sendTo-adress by hand, can't use the $to ?
// so this ONE works
<?php
$subject = "dsfdsfdsfsfdsfsdf";
$headers = "From: Birthday Reminder <birthday@example.com>";
$message = "nu lukt het wel, raar";
mail("bart@example.com", $subject, $message);
?>
// and this ONe is freaking me out 🙂
<?php
$to = "bart@example.com";
$subject = "dsfdsfdsfsfdsfsdf";
$headers = "From: Birthday Reminder <birthday@example.com>";
$message = "nu lukt het wel, raar";
mail($to, $subject, $message);
?>
thanx
artdepoo