This commit is contained in:
parent
64a18dac23
commit
836df6c93a
1 changed files with 3 additions and 3 deletions
|
@ -35,7 +35,7 @@ async function sendEmail(content: string) {
|
|||
const info = await transporter.sendMail({
|
||||
from: '"The Oracle" <the.oracle@holy.mountain>',
|
||||
to: "Christopher.Hase@telekom.com;test@mailhog.local",
|
||||
subject: "Your Horoscope Is Ready",
|
||||
subject: "Your New Horoscope Is Ready",
|
||||
text: content,
|
||||
html: html(content)
|
||||
});
|
||||
|
@ -134,8 +134,8 @@ function render(node: Node): string {
|
|||
case "Hexagram":
|
||||
//outputHTML = "<p><i>" + node.value + "</i></p>";
|
||||
|
||||
node.value = node.value?.replace("</h1>", "</h1>"); //TODO: OK??
|
||||
outputHTML = "<p style=\"font-size: 24px;\">" + node.value + "</p>"; //TODO: OK??
|
||||
//node.value = node.value?.replace("</h1>", "</h1>"); //TODO: OK??
|
||||
outputHTML = "<p style=\"font-size: 2rem;\">" + node.value + "</p>"; //TODO: OK??
|
||||
|
||||
outputHTML = outputHTML + render(node.child!);
|
||||
|
||||
|
|
Loading…
Reference in a new issue