Hi
I have a form and when it is submitted an alert box opens and lets people know the message has been sent.
I want to change this to an info box as the alert box looks like something is wrong. (The alert box has a "!" and the info box has a "i" image)
My code that opens the box is...
if(mail($target_address, $subject, $message, $headers) && mail($seller_email, $subject, $message, $headers))
echo "Your Message Has Been Sent \n\nThe Owner Will Contact You As Soon As Possible\n\nThank You Spain-Holiday-Sun.com";
else
echo "Sorry your message delivery failed. Make sure all fields are complete and try again";
Is there a way to do this?
Thanks in advance.