Skip to content

Commit

Permalink
fix: organisation name
Browse files Browse the repository at this point in the history
  • Loading branch information
Arnaud AMBROSELLI committed Nov 15, 2023
1 parent 69f4a4d commit fceafd1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
1 change: 1 addition & 0 deletions api/src/controllers/organisation.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ router.post(
},
{ returning: true }
);
console.log(organisation.name);
await mailservice.sendEmail(
adminUser.email,
"Bienvenue dans Mano",
Expand Down
5 changes: 3 additions & 2 deletions api/src/controllers/user.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const { validatePassword, looseUuidRegex, jwtRegex, sanitizeAll, headerJwtRegex
const mailservice = require("../utils/mailservice");
const config = require("../config");
const { comparePassword } = require("../utils");
const { User, RelUserTeam, Team } = require("../db/sequelize");
const { User, RelUserTeam, Team, Organisation } = require("../db/sequelize");
const validateUser = require("../middleware/validateUser");
const { capture } = require("../sentry");
const { ExtractJwt } = require("passport-jwt");
Expand Down Expand Up @@ -350,7 +350,8 @@ router.post(
await tx.commit();
await user.save({ transaction: tx });

await mailservice.sendEmail(data.email, "Bienvenue dans Mano", null, mailBienvenueHtml(data.name, data.email, data.organisation.name, token));
const organisation = await Organisation.findOne({ where: { _id: req.user.organisation } });
await mailservice.sendEmail(data.email, "Bienvenue dans Mano", null, mailBienvenueHtml(data.name, data.email, organisation.name, token));

return res.status(200).send({
ok: true,
Expand Down
13 changes: 8 additions & 5 deletions api/src/utils/mail-bienvenue.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@ Si le lien ci-dessus ne fonctionne pas, vous pouvez cliquer sur le lien suivant&
<p>Pour vous connecter, cliquez sur le lien suivant&nbsp;:</p>
<p><a href="https://dashboard-mano.fabrique.social.gouv.fr/">👉 Me connecter à Mano 👈</a></p>
<br />
<p><b>Étape 4&nbsp;: Téléchargez l'app 📲</b></p>
<p><a href="https://mano-app.fabrique.social.gouv.fr/download">
Pour télécharger l’application, c’est PAR ICI !
</a>
<br />
<br />
<br />
<br />
<p>Si vous avez des questions ou avez besoin d'assistance, n'hésitez pas à nous contacter votre chargé·e de déploiement&nbsp;:</p>
<p>Melissa Saiter&nbsp;:<br />
[email protected] - +33 6 13 23 33 45<br />
Expand All @@ -54,11 +62,6 @@ Reservez un temps de présentation de l’outil MANO (Yoann)
</li>
</ul>
<br />
<p><b>Étape 4&nbsp;: Téléchargez l'app 📲</b></p>
<p><a href="https://mano-app.fabrique.social.gouv.fr/download">
Pour télécharger l’application, c’est PAR ICI !
</a>
<br />
<p>Nous vous remercions de rejoindre la communauté Mano et espérons répondre à vos besoins pour accompagner au mieux votre public.</p>
<p>Cordialement,</p>
<p>Toute l'équipe Mano</p>
Expand Down

0 comments on commit fceafd1

Please sign in to comment.