我正在创建一个在线职位申请,提交该职位后,它会通过nodemailer和mailgun将电子邮件发送给招聘经理。该应用程序相当长,并且并非所有字段都是必填字段。目前,我已将其设置为将电子邮件中的所有键值对发送给招聘经理,但是如果该字段保留为空,则我希望将该键值对保留在电子邮件中。我该怎么办?
这是我的nodemailer代码:
const nodemailer = require('nodemailer');
const mailgun = require('nodemailer-mailgun-transport');
const debug = require('debug')('app:mail');
const auth = {
auth: {
api_key: '**************************************',
domain: '*************************.mailgun.org'
}
};
const transporter = nodemailer.createTransport(mailgun(auth));
function sendAppliedEmail(applicant) {
let html = '<div style="background: url(****************************************) center center/cover no-repeat; background-size: auto;">'
html += '<img src="**************************" alt="logo" style="margin: 0 auto;">';
html += '<h2 style="color: #f49842; text-align: center">New Applicant</h2>'
html += '<ul>';
Object.entries(applicant).forEach(([key, value]) => {
html += `<li>${key.replace(/([a-z])([A-Z])/g, `$1 $2`).toUpperCase().fontcolor('green')}: ${value}</li>`;
});
html += '</ul></div>';
const mailOptions = {
from: 'info@example.com',
to: 'sample@example.com, sampleme@example.com, sampletwo@example.com',
subject: 'New Applicant to Tropical Sno',
html
};
transporter.sendMail(mailOptions, (err, info) => {
if (err) {
debug(`Error: ${err}`);
} else {
debug(`Info: ${info}`);
}
});
}
module.exports = sendAppliedEmail;
答案 0 :(得分:2)
您可以使用Array.Prototype.Filter
获取所有值不为空或未定义的对,然后在该过滤后的数组上创建html。
Object.entries(applicant).filter(([key,value])=>value).forEach(([key, value]) => {
html += `<li>${key.replace(/([a-z])([A-Z])/g, `$1 $2`).toUpperCase().fontcolor('green')}: ${value}</li>`;
});
答案 1 :(得分:1)
您可以使用条件(if
)
Object.entries(applicant).forEach(([key, value]) => {
if(value) {
html += `<li>${key.replace(/([a-z])([A-Z])/g, `$1 $2`).toUpperCase().fontcolor('green')}: ${value}</li>`;
}
});