Robbie Staufer wrote:
> Here's what I have:
>
> $from_address = "[EMAIL PROTECTED]";
> $to_address = "[EMAIL PROTECTED]";
> $subject = "ESMF Registration Form";

I should have pointed out that here single quotes
are just what you want, to stop it expanding
arrays @sweb and @scd. That way you wouldn't need
to escape them with backslashes.

    $from_address = '[EMAIL PROTECTED]';
    $to_address = '[EMAIL PROTECTED]';
    $subject = 'ESMF Registration Form';

/R




-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to