Hello,
I would like to add the bootstrap CDN in a custom email. Seeing that the custom email read the html, I tried to define it like this in my email template:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<i style="color: red;">*** Ceci est un message automatique ***</i>
</br>
</br>
</br>
<i>Madame, Monsieur,
</br>
</br>
Nous venons d'effectuer un dévellopement et nous vous invitons à repondre à un bref questionnaire relative à votre satisfaction.
</br>
Cela vous prendra moins d'une minute et nous permettra d'améliorer les services que nous vous délivrons.
</br>
</br>
Merci d'avance pour votre participation.
</br>
</br>
Pour accéder au formulaire, cliquez sur le bouton suivant:
</i>
</br>
</br>
<form target="_blank" action="http://server/${cfValues['Custom']}/$issue.key $issue.summary/$issue.reporter.emailAddress/$issue.key">
<input type="submit" class="badge badge-primary" value="Formulaire" />
</form>
</br>
</body>
</html>
I added two class of boostrap in my input but it doesn't work.
Can you help me please ?