Skip to content

Commit

Permalink
improve default email subject
Browse files Browse the repository at this point in the history
  • Loading branch information
luisrovirosa committed Feb 15, 2024
1 parent e8bccaf commit cecf2c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/email-sender.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ function getSubject(trainingType) {
};

return trainings[trainingType]
? trainings[trainingType] + ' ' + today.replace(/\//g, '-')
: 'Contacto a través de la web';
? 'Lead: ' + trainings[trainingType] + ' ' + today.replace(/\//g, '-')
: 'Lead: Contacto a través de la web';
}

0 comments on commit cecf2c7

Please sign in to comment.