Add testing for mail features
Signed-off-by: Fred Boniface <fred@fjla.uk>
This commit is contained in:
parent
95d735205a
commit
fe9eeae7db
17
src/mail-templates/register.html
Normal file
17
src/mail-templates/register.html
Normal 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>
|
7
src/services/mail.services.js
Normal file
7
src/services/mail.services.js
Normal 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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user