简体   繁体   中英

add <hr> in php file on joomla

I have this:

if ($copy_email_activated == true && !empty($data['contact_email_copy']))
            {
                $copytext    = JText::sprintf('COM_CONTACT_COPYTEXT_OF', $contact->name, $sitename);
                $copytext    .= "\r\n\r\n" . $body;
                $copysubject = JText::sprintf('COM_CONTACT_COPYSUBJECT_OF', $subject);

                $mail = JFactory::getMailer();
                $mail->addRecipient($email);
                $mail->addReplyTo($email, $name);
                $mail->setSender(array($mailfrom, $fromname));
                $mail->setSubject($copysubject);
                $mail->setBody($copytext);
                $sent = $mail->Send();
            }

And I need add in the body, one tag <hr> , but not working . <hr> or echo <hr> . Any solutions?

I need to tell the mailer it is HTML. This is done with isHTML. $mail->IsHTML(true);

Then .'


' and it works properly.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM