How do I break lines in an email that will be sent via PHP
?
If I use
<br/>
it works only if the email arrives in the spam box.
Part of the PHP code:
if(count($errors) == 0){
$user = get_userdata( $status );
$user->set_role('commentator_commenter');
$from = get_option('admin_email');
$headers = __( 'De', 'commentator' ).' '.$from . "</br>";
$subject = __( 'Registrado com sucesso', 'commentator' );
$msg = __( 'Você foi registrado com sucesso!<br/>', 'commentator' ).__( 'Seus dados:<br/>', 'commentator' ).__( 'Usuário:', 'commentator' ).$username.__( '<br/>Senha:', 'commentator' ).$password;
add_filter( 'wp_mail_content_type', 'set_html_content_type' );
wp_mail( $email, $subject, $msg, $headers );
remove_filter( 'wp_mail_content_type', 'set_html_content_type' );
$arr = array(
'message' => __( 'Registro com sucesso, verifique em seu e-mail a sua senha', 'commentator' )
);
}