Hello all,
I have a php mailer that I would like to have redirect if the subject is != "accepted", I've never used a redirect on a mailer so it's new to me.
So somethng like the code below
$email = "name@mydomain.com";
if($subject = "accepted"{
$email = "name@mydomain.com";
$subject = "accepted"
}else if($subject = "declined"{
$email = "name@mydomain.com";
$subject = "declined";
$redirect = "declined.htm";
}
Any help is greatly appreciated
I have a php mailer that I would like to have redirect if the subject is != "accepted", I've never used a redirect on a mailer so it's new to me.
So somethng like the code below
$email = "name@mydomain.com";
if($subject = "accepted"{
$email = "name@mydomain.com";
$subject = "accepted"
}else if($subject = "declined"{
$email = "name@mydomain.com";
$subject = "declined";
$redirect = "declined.htm";
}
Any help is greatly appreciated