Skip to content

Commit

Permalink
Merge pull request #239 from tottywell/master
Browse files Browse the repository at this point in the history
Algumas melhorias nos emails Vencedor do livro/doador do livro
  • Loading branch information
walter-lopes authored Mar 24, 2019
2 parents 6040f99 + 6ab8b19 commit 3350ac8
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 7 deletions.
6 changes: 5 additions & 1 deletion ShareBook/ShareBook.Service/BookUser/BookUserEmailService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,11 @@ public async Task SendEmailTrackingNumberInformed(BookUser bookUserWinner, Book
{
var vm = new
{
book = book
book = book,
NameFacilitator = book.UserFacilitator.Name,
LinkedInFacilitator = book.UserFacilitator.Linkedin,
ZapFacilitator = book.UserFacilitator.Phone,
EmailFacilitator = book.UserFacilitator.Email,
};
var html = await _emailTemplate.GenerateHtmlFromTemplateAsync(BookTrackingNumberNoticeWinnerTemplate, vm);
await _emailService.Send(bookUserWinner.User.Email, bookUserWinner.User.Name, html, BookTrackingNumberNoticeWinnerTitle, false);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ <h2>Motivo</h2>
<h3>Importante!</h3>
<p>
Este é apenas uma aviso que mostra que alguém está interessado no livro que você disponibilizou.<br>
É necessário no entanto aguardar até a data de <strong>{Donor.ChooseDate}</strong> para escolhero ganhador.
É necessário no entanto aguardar até a data de <strong>{Donor.ChooseDate}</strong> para escolher o ganhador.
</p>
<p>
Atenciosamente,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,25 @@
<p>
Olá,<br /><br />

Temos uma notícia boa.
<br /> O livro <strong>{book.Title}</strong> foi postado e você pode acompanhar o rastreio no site
dos <a target="_blank" href="http://www.correios.com.br" title="Correios">Correios</a> com o código
<strong> {book.TrackingNumber} </strong>
Temos uma notícia boa.
<br /> O livro <strong>{book.Title}</strong> foi postado e você pode acompanhar o rastreio no site
dos <a target="_blank" href="http://www.correios.com.br" title="Correios">Correios</a> com o código
<strong> {book.TrackingNumber} </strong>.

</p>

<p>
Em caso de dúvidas ou atraso não hesite em falar com o Facilitador. Nós queremos muito que o livro
chegue até você o mais rápido possível.
</p>

<ul>
<li><strong>Nome do Facilitador: </strong>{NameFacilitator}</li>
<li><strong>LinkedIn: </strong>{LinkedInFacilitator}</li>
<li><strong>Whatsapp: </strong>{ZapFacilitator}</li>
<li><strong>Email: </strong>{EmailFacilitator}</li>
</ul>

<p>
Atenciosamente,<br /><br />

Expand Down

0 comments on commit 3350ac8

Please sign in to comment.