You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@kaaljabr This looks like issue #30 in the keystone-email package (which you've also commented on). The bug will have to be addressed there, but I'll leave this issue as a placeholder for updating the keystone-email dependency when a fix is available.
Note: it looks like the intent was to support a generic name object rather than assuming objects would be a Keystone Name field (which includes the full() virtual to concatenate the names).
Hi,
I am facing an issue when sending enquiries by email using mailgun. When I receive them I get into this issue:
to: { first: "Admin", last: "user" } [email protected]
And when I look into my inbox. I see the to field showing {
I found the issue it is here:
in transport/mailgun/processAddress.js
// process { name: 'Jed Watson', email: '[email protected]' } into 'name <email>' format if (data.name && data.email) { rtn.address = data.name + ' <' + data.email + '>'; }
It should be
rtn.address = data.name.full + ' <' + data.email + '>';
The text was updated successfully, but these errors were encountered: