Add testing for mail features

Signed-off-by: Fred Boniface <fred@fjla.uk>
This commit is contained in:
Fred Boniface 2023-03-31 21:14:29 +01:00
parent 95d735205a
commit fe9eeae7db
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,17 @@
<html lang="en" style="background-color: grey; width: 100%;">
<head>
<title>OwlBoard - Register</title>
</head>
<body>
<table width="100%">
<tr>
<td>
<img src="https://owlboard.info/images/logo/wide_logo.svg" style="height: 100px">
</td>
<td>
<h1>Register for OwlBoard</h1>
</td>
</tr>
</table>
</body>
</html>

View File

@ -0,0 +1,7 @@
const log = require('../utils/log.utils')
const mail = require('some-mail-module')
async function sendTest() {
// Send test mail message
return;
}