All files / src helpers.ts

100% Statements 27/27
100% Branches 23/23
100% Functions 6/6
100% Lines 25/25

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 1241x         1x 8x                                                                                                                                           8x                     8x       9x 9x 9x 1x   1x   8x 8x 8x 1x   8x 1x   8x   8x 8x 1x 1x   7x 7x           1x   381x  
import * as nodemailer from 'nodemailer';
 
import { MailModel, PrivateConfigModel } from './models';
 
/** get HTML template for e-mails */
const getHTMLTemplate = (mailContent: string, privateConfig: PrivateConfigModel): string => {
    let body = `
<html><head><meta http-equiv='Content-Type' content='text/html; charset=UTF-8'></head><body>
<center style='margin: 0;'>
    <table width='570' style='min-width: 570px;
    border-spacing: 0 !important; margin: 0 auto; border: 5px solid #edf0f4;'>
    <tbody width='570' style='min-width: 570px; margin: 0;'>
    <tr width='570' style='min-width: 570px; margin: 0;'>
    <td width='570' style='min-width: 570px; margin: 0; padding: 0;'>
 
    <div id='wrapper' style='width: 570px; overflow: auto; padding-top: 0px; margin: 0 auto;'>
 
    <div id='header' style='margin: 0;'>
        <table width='570px' style='border-spacing: 0 !important; margin: 0;'>
        <tbody><tr style='margin: 0; background-color: %headerBackgroundColor%;'>
        <td style='margin: 0; padding: 0;'>
        <br style='margin: 0;'>
        <br style='margin: 0;'>
 
        <center style='margin: 0;'>
        <a href='%siteURL%' target='_blank' style='text-decoration: none; color: #8b9198; margin: 0;'>
        %logoOrName%
        </a>
        </center>
 
        <br style='margin: 0;'>
        </td>
        </tr>
 
        <tr style='margin: 0;'>
        <td style='margin: 0; padding: 0;'>
        <center style='margin: 0;'>
            <table style='width: 525px; height: 80px; border-top-width: 1px;
            border-top-color: #cdd4de; border-top-style: solid; border-bottom-width: 1px;
            border-bottom-color: #cdd4de; border-bottom-style: solid; border-spacing: 0 !important; margin: 0;'>
            <tbody><tr style='margin: 0;'>
            <td style='text-align: left; margin: 0; padding: 30px 0px 20px 0px;' align='center'>
 
            %mailContent%
 
            </td>
            </tr>
            </tbody></table>
        </center>
        </td>
        </tr>
 
        <tr style='margin: 0; background-color: %headerBackgroundColor%;'>
        <td style='text-align: center; margin: 0; padding: 30px 20px 20px 20px; color: #FFF;' align='center'>
            %automaticallyGeneratedEmailNote%
        <br style='margin: 0;'>
        <br style='margin: 0;'>
         <a href='%siteURL%' target='_blank' style='text-decoration: none; color: #FFF; margin: 0;'>
          © %currentYear% %siteName%
         </a>
        <br style='margin: 0;'>
        <br style='margin: 0;'>
 
        <a href='%siteURL%' target='_blank' style='text-decoration: none; color: #FFF; margin: 0;'>%siteName%</a>
 
        </td>
        </tr>
        </tbody></table>
    </div>
    </div>
    </td>
    </tr>
    </tbody>
    </table>
</center>
</body></html>`;
    body = body.replace(/%siteURL%/g, privateConfig.mail.siteURL)
        .replace(/%logoOrName%/g, privateConfig.mail.logoURL ?
                `<img src='${privateConfig.mail.logoURL}' alt='${privateConfig.mail.siteName}' style='margin: 0;'>` :
            privateConfig.mail.siteName)
        .replace(/%siteName%/g, privateConfig.mail.siteName)
        .replace(/%headerBackgroundColor%/g, privateConfig.mail.headerBackgroundColor || '#222')
        .replace(/%headerBackgroundColor%/g, privateConfig.mail.footerBackgroundColor || '#AAA')
        .replace(/%mailContent%/g, mailContent)
        .replace(/%automaticallyGeneratedEmailNote%/g, privateConfig.mail.automaticallyGeneratedEmailNote || '&nbsp;')
        .replace(/%currentYear%/g, new Date().getUTCFullYear().toString());
 
    return body;
};
 
/** send E-Mail */
export const sendMail = async (mailContent: MailModel, privateConfig: PrivateConfigModel): Promise<any> =>
    new Promise<any>(async (resolve, reject): Promise<any> => {
        if (!privateConfig.smtp || !privateConfig.mail || !privateConfig.mail.isSendMail) {
            console.log(`Mail send skipped: ${mailContent.to}`);
 
            resolve(`Mail send skipped: ${mailContent.to}`);
        } else {
            const smtpConfig = JSON.parse(JSON.stringify(privateConfig.smtp));
            const transporter = nodemailer.createTransport(smtpConfig);
            if (!mailContent.from) {
                mailContent.from = privateConfig.mail.mailFrom;
            }
            if (privateConfig.mail.mailToForced) {
                mailContent.to = privateConfig.mail.mailToForced;
            }
            mailContent.html = getHTMLTemplate(mailContent.html ? mailContent.html : mailContent.text, privateConfig);
 
            const result = await transporter.sendMail(mailContent);
            if (result.err) {
                console.log(`Mail send failed: ${mailContent.to}, error: ${JSON.stringify(result.err)}`);
                reject(result.err);
            } else {
                console.log(`Mail send succeed: ${mailContent.to}, result: ${JSON.stringify(result)}`);
                resolve(`Mail send succeed: ${mailContent.to}`);
            }
        }
    });
 
/** get null instead of undefined because of firestore */
export const getNullInsteadOfUndefined = (value: string): string =>
    // tslint:disable-next-line:no-null-keyword
    value === undefined ? null : value;