|
Posted by Alvaro G. Vicario on 05/17/07 20:44
*** KK escribió/wrote (15 May 2007 23:37:55 -0700):
> $to="iddkarthis@gmail.com";
> $from="kk";
> $sub="hi";
> $mess="any one help";
> error_reporting(E_ERROR | E_WARNING | E_PARSE);
> mail($to, $sub, $mess, $from);
This is the function syntax:
bool mail ( string to, string subject, string message [, string
additional_headers [, string additional_parameters]] )
In the fourth parameter, additional_headers, you can provide additional
headers in the form:
"Header-Name: Header value\nAnother-Header: Another value"
"kk" is not a valid header.
--
-+ http://alvaro.es - Álvaro G. Vicario - Burgos, Spain
++ Mi sitio sobre programación web: http://bits.demogracia.com
+- Mi web de humor con rayos UVA: http://www.demogracia.com
--
Navigation:
[Reply to this message]
|