[PHP] mail() returned a strange error, what is this?

2002-05-29 Thread Magnus Hammar
on line 216 -- Can anyone explaun why I get these errors, mail() with sendmail is working fine with other php-sites on the server... Thanks. /Magnus Hammar -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Cookie Not Setting..

2001-07-11 Thread Magnus Hammar
ot;/my/index.php". 3. To really see if the cookie is set you can use Netscape and let it warn you before accepting a cookie, in that way you will see the cookiename and it's value and then you can be sure the cookie is set. 4. You can do the same thing with IE.

[PHP] SMTP-access with PHP...

2001-06-20 Thread Magnus Hammar
iso-8859-1\n"); fputs($smtp_connection, "Content-Transfer-Encoding: 8bit\n"); fputs($smtp_connection, "X-mailer: Magnus Mail"); fputs($smtp_connection, "\n\n"); fputs($smtp_connection, "$bodyn\n\r"); fputs($smtp_connection, ""); $return_value = $return_value.fgets($smtp_connection,128).""; fputs($smtp_connection, ""); fputs($smtp_connection, "QUIT\n\r"); $return_value = $return_value.fgets($smtp_connection,128).""; fclose($smtp_connection); return $return_value; /Magnus Hammar --