Les dejo la solución:
--Datos del usuario
Declare @usuario as nvarchar(70)
Declare @mail as nvarchar(100)
Declare @pass as nvarchar(100)
declare @nombre as nvarchar(250)
select @nombre='Kanon',
@mail='
[email protected]',@pass='kanon'
--CONTENIDO DEL CORREO
declare @html varchar(4000)='<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Untitled Page</title>
<style type="text/css">
#contenedor-mains
{ margin:20px; width:800px;}
#contenedor-mains div { background:#fff; font-family:Arial; }
#cuentaUsr{ border:1px solid #FF0100; width:350px; }
#Pie{ width:800px; }
p{ font-size: 12p; }
</style>
</head>
<body>
<div id="contenedor-mains">
<p>
<b>Estimado(a) '+@nombre+'</b>
</p>
<p>Saludos '+@nombre+' </p>
<p><b>Información de la cuenta:</b></p>
<TABLE WIDTH="200" BORDER="1" BGCOLOR="#F0ECFF" cellspacing="0" cellpadding="0" align="center">
<TR ALIGN = "center">
<TD WIDTH="100"><b>Usuario</b></TD>
<TD WIDTH="100"><b>Contraseña</b></TD>
</TR>
<TR>
<TD>'+@mail+'</TD>
<TD> '+@pass+'</TD>
</TR>
</TABLE>
<div id="Pie">
<h5>Favor de no responder este correo</h5>
</div>
</div>
</body>
</html>'
EXEC msdb.dbo.sp_send_dbmail
@profile_name='enviamail',
@recipients='
[email protected]',
@blind_copy_recipients ='
[email protected]',
@subject= 'Actualización',
@body = @html,
@body_format = 'HTML'