Skip to content

Commit aa831f8

Browse files
authored
fix(docs): typo and link formatting fix (#123)
of package name used in examples GH-81
1 parent 0f67bc1 commit aa831f8

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ It provides a generic provider-based framework to add your own implementation or
2222
5. [FCM](https://firebase.google.com/docs/cloud-messaging) - It's one of the PushProvider for sending realtime push notifications to mobile applications as well as web applications.
2323
6. [Nodemailer](https://nodemailer.com/about/) - It's one of the EmailProvider for sending email messages.
2424
7. [Apple Push Notification service](https://developer.apple.com/library/archive/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/APNSOverview.html#//apple_ref/doc/uid/TP40008194-CH8-SW1) - It's one of the push notification providers that integrates notification service created by Apple Inc. that enables third party application developers to send notification data to applications installed on Apple devices.
25-
8. [Twilio SMS Service](https://www.twilio.com/docs/sms, https://www.twilio.com/docs/whatsapp) - Twilio is a modern communication API Used by developers for establishing communications. Twilio can be used for sending SMS or Whatapp notifications.
25+
8. [Twilio SMS Service](https://www.twilio.com/docs/sms) - Twilio is a modern communication API Used by developers for establishing communications. Twilio can be used for sending SMS or [Whatapp notifications](https://www.twilio.com/docs/whatsapp).
2626
You can use one of these services or add your own implementation or integration using the same interfaces and attach it as a provider for that specific type.
2727

2828
You can use one of these services or add your own implementation or integration using the same interfaces and attach it as a provider for that specific type.
@@ -66,7 +66,7 @@ import {
6666
NotificationsComponent,
6767
NotificationBindings,
6868
} from 'loopback4-notifications';
69-
import {SesProvider} from 'loopback-notifications/ses';
69+
import {SesProvider} from 'loopback4-notifications/ses';
7070

7171
export class NotificationServiceApplication extends BootMixin(
7272
ServiceMixin(RepositoryMixin(RestApplication)),
@@ -88,7 +88,7 @@ import {
8888
NotificationsComponent,
8989
NotificationBindings,
9090
} from 'loopback4-notifications';
91-
import {SesProvider, SESBindings} from 'loopback-notifications/ses';
91+
import {SesProvider, SESBindings} from 'loopback4-notifications/ses';
9292

9393
export class NotificationServiceApplication extends BootMixin(
9494
ServiceMixin(RepositoryMixin(RestApplication)),
@@ -117,7 +117,7 @@ import {
117117
NotificationsComponent,
118118
NotificationBindings,
119119
} from 'loopback4-notifications';
120-
import {SesProvider, SESBindings} from 'loopback-notifications/ses';
120+
import {SesProvider, SESBindings} from 'loopback4-notifications/ses';
121121

122122
export class NotificationServiceApplication extends BootMixin(
123123
ServiceMixin(RepositoryMixin(RestApplication)),
@@ -343,7 +343,6 @@ If you wish to use any other service provider of your choice, you can create a p
343343
this.bind(NotificationBindings.SMSProvider).toProvider(MyOwnProvider);
344344
```
345345

346-
347346
### SMS / Whatsapp Notifications using Twilio
348347

349348
This extension provides in-built support of Twilio integration for sending SMS / whatsapp notifications from the application. In order to use it, run `npm install twilio`, and then bind the TwilioProvider as below in application.ts.

0 commit comments

Comments
 (0)