i have a php page that sends mails to the visitors and in the body of the mail there is an email address which turns into a link and has an underline. this link should be just an address not a link to send a mail to it. another thing is that i can't change it's style using CSS or Something else. i have the same problem with phone numbers. i don't want it to be a link. how can i disable this link behavior?
this is the code for sending the email:
$mail = "getter@example.com";
$subject = "mail address";
$body = "<p>This is The Email Address</p><br><span>responder@example.com</span>";
$headers = "From: Gifters <info@example.com>"
mail($mail, $subject, $body, $headers);
thanks for reading this.