Hi!

I have working at SourceForge.net project web space Drupal as CMS. I
have many modules installed related with email like Contact, Notify...
This modules never worked and I tried send an email from email php
function. I did it with:

<?php
$to = "myem...@gmail.com";
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";
if (mail($to, $subject, $body)) {
  echo("<p>Message successfully sent!</p>");
 } else {
  echo("<p>Message delivery failed...</p>");
 }
?>

This does not work too. Is there any issue with email sending from
SourceForge.net?

Thanks!

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to