Fix email links displayed twice as text

pull/4903/head
Chocobozzz 2022-04-15 14:19:07 +02:00
parent ec2fa0d0b1
commit 3c7ddd7daa
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 13 additions and 0 deletions

View File

@ -141,6 +141,12 @@ class Emailer {
const email = new Email({
send: true,
htmlToText: {
selectors: [
{ selector: 'img', format: 'skip' },
{ selector: 'a', options: { ignoreHref: true } }
]
},
message: {
from: `"${fromDisplayName}" <${CONFIG.SMTP.FROM_ADDRESS}>`
},

View File

@ -61,6 +61,13 @@ describe('Test contact form', function () {
expect(email['text']).contains('my super message')
})
it('Should not have duplicated email adress in text message', async function () {
const text = emails[0]['text'] as string
const matches = text.match(/toto@example.com/g)
expect(matches).to.have.lengthOf(1)
})
it('Should not be able to send another contact form because of the anti spam checker', async function () {
this.timeout(10000)