Re: [PHP] sending e-mail with variables

2001-06-27 Thread Jason Stechschulte
On Tue, Jun 26, 2001 at 12:13:28PM -0700, Richard Kurth wrote: > I have a function that is for sending an e-mail to the customer This is probably where your problem is. $hostname, $domain, $tld, and $fullname have to be defined in the function. Try echoing them inside of the function. You shou

RE: [PHP] sending e-mail with variables

2001-06-26 Thread Kristian Duske
> $subject =$row["msub"]; //"Your webhosting account at > $hostname.$domain$tld"; > $message .= $row["mline1"]; //"Dear $fullname,\n"; > > $message .= $row["mline2"];//"Your webhosting account has been > created. Please use the\n"; > $message .= $row["mline3"];//"following data to log in:\n"; > No