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"],
|
to: user["email"],
|
||||||
from: "mbonilla.guti@gmail.com",
|
from: "mbonilla.guti@gmail.com",
|
||||||
subject: 'Usuario registrado',
|
subject: 'Usuario registrado',
|
||||||
template: 'emailCreateUserAdmin',
|
template: 'emailCreateUserAdminCommunity',
|
||||||
context: {
|
context: {
|
||||||
name: user["name"],
|
name: user["name"],
|
||||||
password: user["password"],
|
password: user["password"],
|
||||||
|
@ -72,7 +72,7 @@ export class EmailController {
|
||||||
{
|
{
|
||||||
filename: 'Logo Katoikia.svg',
|
filename: 'Logo Katoikia.svg',
|
||||||
path: __dirname + '/mails/images/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><!-- end tr -->
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="middle" class="hero bg_white" style="padding: 3em 0 2em 0;">
|
<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;">
|
style="width: 300px; max-width: 600px; height: auto; margin: auto; display: block;">
|
||||||
</td>
|
</td>
|
||||||
</tr><!-- end tr -->
|
</tr><!-- end tr -->
|
||||||
|
@ -376,15 +376,15 @@
|
||||||
<td>
|
<td>
|
||||||
<div class="text" style="padding: 0 2.5em; text-align: center;">
|
<div class="text" style="padding: 0 2.5em; text-align: center;">
|
||||||
<h2>Hola, {{ name }}</h2>
|
<h2>Hola, {{ name }}</h2>
|
||||||
<h2>Ha sido registrado como un Administrador de la Comunidad `{{community_name}}`</h2>
|
<p>Ha sido registrado como un Administrador de la Comunidad `{{community_name}}`</p>
|
||||||
<h3>Fecha de registro: {{date_entry}}</h3>
|
<p>Fecha de registro: {{date_entry}}</p>
|
||||||
|
|
||||||
<h3>Estas son sus credenciales:</h3>
|
<h3>Estas son sus credenciales:</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Correo electronico: {{email}}</li>
|
<li></p>Correo electronico: {{email}}</p></li>
|
||||||
<li>Password: {{password}}</li>
|
<li><p>>Password: {{password}}</p></li>
|
||||||
</ul>
|
</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>
|
<p><a href="{{ url }}" class="btn btn-primary">Iniciar sesión</a></p>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
|
|
|
@ -181,7 +181,7 @@ const AdministradoresComunidad = () => {
|
||||||
// _adminCommunity.community_id = communitiesList.find(c => c._id === _adminCommunity.community_id).name
|
// _adminCommunity.community_id = communitiesList.find(c => c._id === _adminCommunity.community_id).name
|
||||||
|
|
||||||
_administrators.push(_adminCommunity);
|
_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);
|
setListaAdmins(_administrators);
|
||||||
|
|
||||||
|
@ -192,7 +192,6 @@ const AdministradoresComunidad = () => {
|
||||||
err => console.log('Ocurrió un error con el fetch', err)
|
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 {
|
} else {
|
||||||
setSubmitted(true);
|
setSubmitted(true);
|
||||||
|
|
Loading…
Reference in New Issue