0
我想使用loopback.io發送電子郵件,我能夠從回送發送郵件,但無法設置郵件的簽名。郵件發送的代碼是 MyModel.app.models.Email.send({ to: '[email protected]', from: '[email protected]', subject: 'my subject', text: 'my text', html: 'my <em>html</em>' }, function(err, mail) { console.log('email sent!'); cb(err); });
有沒有辦法在JSON提前使用回送發送電子郵件使用簽名
感謝您的回覆,我做了同樣的方式,就像我在身體本身添加簽名 –