This topic is locked

Problems with emailing

9/18/2007 8:44:59 AM
PHPRunner General questions
F
francol author

Hi,
I've just installed the 21-day trial verison of the software and so far the application looks very good!

I'm still struggling with my prototype, as I simply need to send an email, but I am not receiving them.

See my details_events file below (me@mydomain.com has been substituted for my real email address.
<?php
function AfterAdd()

{

$email="me@mydomain.com";

$message="Hello there Best regards";

$subject="Sample subject";

$headers = 'From: me@mydomain.com';

mail($email, $subject, $message, $headers);
} // function AfterAdd

// function AfterAdd
?>

Any help wqould be nuch appreciated

F
francol author 9/18/2007

Hi,

I've just installed the 21-day trial verison of the software and so far the application looks very good!

I'm still struggling with my prototype, as I simply need to send an email, but I am not receiving them.

See my details_events file below (me@mydomain.com has been substituted for my real email address.
<?php
function AfterAdd()

{

$email="me@mydomain.com";

$message="Hello there Best regards";

$subject="Sample subject";

$headers = 'From: me@mydomain.com';

mail($email, $subject, $message, $headers);
} // function AfterAdd

// function AfterAdd
?>

Any help wqould be nuch appreciated

F
francol author 9/18/2007

I've just managed to successfully test the email by setting up sendmail and a dummy user on my XP test system.

My test system is in a network, and I need to send emails to people within the network.

Anybody know how I can route emails to valid Internet email addresses on my network?