Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: added original removed messaging providers doc page #1500

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions src/routes/docs/products/messaging/providers/+page.markdoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
layout: article
title: Providers
description: Learn the different providers that you can use to send messages with Appwrite.
back: /docs/products/messaging
---
Appwrite allows you to connect to a variety of third-party messaging providers to deliver push notifications, emails, and SMS messages to your users.
Before you can deliver messages, you must connect to a messaging provider.
# Push notifications {% #push-notifications %}
Send push notifications, which are little notification messages that appear on a user's browser or device to alert them
of events or updates. Configure one of the following providers to send push notifications.
{% cards %}
{% cards_item href="/docs/products/messaging/apns" title="APNS" icon="icon-apple" %}
Send push notifications to apps on Apple devices through Apple Push Notification service (APNs).
{% /cards_item %}
{% cards_item href="/docs/products/messaging/fcm" title="FCM" icon="icon-firebase" %}
Send push notifications to Android, Apple, or Web app with Firebase Cloud Messaging (FCM).
{% /cards_item %}
{% /cards %}
# Email {% #email %}
Deliver customized emails to users to send reminders, updates, promotions, and custom authentication logic.
{% cards %}
{% cards_item href="/docs/products/messaging/mailgun" title="Mailgun" icon="icon-mailgun" %}
Deliver custom email messages to users using Mailgun.
{% /cards_item %}
{% cards_item href="/docs/products/messaging/sendgrid" title="Sendgrid" icon="icon-sendgrid" %}
Deliver custom email messages to users using Sendgrid.
{% /cards_item %}
{% /cards %}
# SMS {% #sms %}
Send customized SMS messages to users by phone to send reminders, updates, promotions, and one-time passwords.
{% cards %}
{% cards_item href="/docs/products/messaging/twilio" title="Twilio" icon="icon-twilio" %}
Deliver custom SMS messages to users using Twilio.
{% /cards_item %}
{% cards_item href="/docs/products/messaging/msg91" title="MSG91" icon="icon-msg91" %}
Deliver custom SMS messages to users using MSG91.
{% /cards_item %}
{% cards_item href="/docs/products/messaging/telesign" title="Telesign" icon="icon-telesign" %}
Deliver custom SMS messages to users using Telesign.
{% /cards_item %}
{% cards_item href="/docs/products/messaging/textmagic" title="TextMagic" icon="icon-textmagic" %}
Deliver custom SMS messages to users using TextMagic.
{% /cards_item %}
{% cards_item href="/docs/products/messaging/vonage" title="Vonage" icon="icon-vonage" %}
Deliver custom SMS messages to users using Vonage.
{% /cards_item %}
{% /cards %}
Loading