fix bug envío del correo
This commit is contained in:
parent
59d99c1cfb
commit
ef3e9fcb56
|
@ -54,7 +54,7 @@ export class EmailController {
|
|||
to: user["email"],
|
||||
from: "mbonilla.guti@gmail.com",
|
||||
subject: 'Usuario registrado',
|
||||
template: 'emailCreateUserAdmin',
|
||||
template: 'emailCreateUserAdminCommunity',
|
||||
context: {
|
||||
name: user["name"],
|
||||
password: user["password"],
|
||||
|
@ -72,7 +72,7 @@ export class EmailController {
|
|||
{
|
||||
filename: 'Logo Katoikia.svg',
|
||||
path: __dirname + '/mails/images/Logo Katoikia.svg',
|
||||
cid: 'logo' //my mistake was putting "cid:logo@cid" here!
|
||||
cid: 'logoKatoikia' //my mistake was putting "cid:logo@cid" here!
|
||||
}
|
||||
]
|
||||
});
|
||||
|
|
|
@ -365,7 +365,7 @@
|
|||
</tr><!-- end tr -->
|
||||
<tr>
|
||||
<td valign="middle" class="hero bg_white" style="padding: 3em 0 2em 0;">
|
||||
<img src="cid:logoLatoikia" alt=""
|
||||
<img src="cid:logoKatoikia" alt=""
|
||||
style="width: 300px; max-width: 600px; height: auto; margin: auto; display: block;">
|
||||
</td>
|
||||
</tr><!-- end tr -->
|
||||
|
@ -376,15 +376,15 @@
|
|||
<td>
|
||||
<div class="text" style="padding: 0 2.5em; text-align: center;">
|
||||
<h2>Hola, {{ name }}</h2>
|
||||
<h2>Ha sido registrado como un Administrador de la Comunidad `{{community_name}}`</h2>
|
||||
<h3>Fecha de registro: {{date_entry}}</h3>
|
||||
<p>Ha sido registrado como un Administrador de la Comunidad `{{community_name}}`</p>
|
||||
<p>Fecha de registro: {{date_entry}}</p>
|
||||
|
||||
<h3>Estas son sus credenciales:</h3>
|
||||
<ul>
|
||||
<li>Correo electronico: {{email}}</li>
|
||||
<li>Password: {{password}}</li>
|
||||
<li></p>Correo electronico: {{email}}</p></li>
|
||||
<li><p>>Password: {{password}}</p></li>
|
||||
</ul>
|
||||
<h3>Inicie sesión en el sitio web para poder acceder y disfrutar todos sus benefucuin</h3>
|
||||
<p>Inicie sesión en el sitio web para poder acceder y disfrutar todos sus benefucuin</p>
|
||||
<p><a href="{{ url }}" class="btn btn-primary">Iniciar sesión</a></p>
|
||||
</div>
|
||||
</td>
|
||||
|
|
|
@ -181,7 +181,7 @@ const AdministradoresComunidad = () => {
|
|||
// _adminCommunity.community_id = communitiesList.find(c => c._id === _adminCommunity.community_id).name
|
||||
|
||||
_administrators.push(_adminCommunity);
|
||||
toast.current.show({ severity: 'success', summary: 'Registro exitoso', detail: 'Comunidad de vivienda Creada', life: 3000 });
|
||||
toast.current.show({ severity: 'success', summary: 'Registro exitoso', detail: 'Administrador de Comunidad de vivienda Creada', life: 3000 });
|
||||
|
||||
setListaAdmins(_administrators);
|
||||
|
||||
|
@ -192,7 +192,6 @@ const AdministradoresComunidad = () => {
|
|||
err => console.log('Ocurrió un error con el fetch', err)
|
||||
);
|
||||
|
||||
toast.current.show({ severity: 'success', summary: 'Registro exitoso', detail: 'Administrador de Comunidad de vivienda Creada', life: 3000 });
|
||||
|
||||
} else {
|
||||
setSubmitted(true);
|
||||
|
|
Loading…
Reference in New Issue