UNPKG
notification-service-sdk
Version:
latest (1.0.0)
1.0.0
A Node.js notification service SDK supporting email and SMS providers
notification-service-sdk
/
dist
/
providers
/
email.d.ts
8 lines
•
282 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
EmailConfig
,
EmailMessage
,
SendResult
}
from
'../interfaces'
;
export
declare
class
EmailProvider
{
private
transporter;
private
config;
constructor
(
config
:
EmailConfig
);
send
(
message
:
EmailMessage
):
Promise
<
SendResult
>; }
//# sourceMappingURL=email.d.ts.map