mirror of
https://github.com/caronc/apprise.git
synced 2024-12-04 05:54:35 +01:00
Page:
Notify_smtp2go
Pages
CLI_Usage
DemoPlugin_Basic
DemoPlugin_WebRequest
Development_API
Development_Apprise_Details
Development_Contribution
Development_LogCapture
Home
Notification_Graveyard
Notify_Custom_Form
Notify_Custom_JSON
Notify_Custom_XML
Notify_Revolt
Notify_africas_talking
Notify_apprise_api
Notify_aprs
Notify_bark
Notify_boxcar
Notify_bulksms
Notify_bulkvs
Notify_burst_sms
Notify_chantify
Notify_clicksend
Notify_d7networks
Notify_dapnet
Notify_dbus
Notify_dingtalk
Notify_discord
Notify_email Fastmail
Notify_email
Notify_emby
Notify_enigma2
Notify_faast
Notify_fcm
Notify_feishu
Notify_flock
Notify_freemobile
Notify_gitter
Notify_gnome
Notify_googlechat
Notify_gotify
Notify_growl
Notify_guilded
Notify_homeassistant
Notify_httpsms
Notify_ifttt
Notify_join
Notify_kavenegar
Notify_kodi
Notify_kumulos
Notify_lametric
Notify_line
Notify_lunasea
Notify_macosx
Notify_mailgun
Notify_mastodon
Notify_matrix
Notify_mattermost
Notify_messagebird
Notify_misskey
Notify_mqtt
Notify_msg91
Notify_msteams
Notify_nexmo
Notify_nextcloud
Notify_nextcloudtalk
Notify_notica
Notify_notifiarr
Notify_notifico
Notify_ntfy
Notify_office365
Notify_onesignal
Notify_opsgenie
Notify_pagerduty
Notify_pagertree
Notify_parseplatform
Notify_plivo
Notify_popcornnotify
Notify_prowl
Notify_pushalot
Notify_pushbullet
Notify_pushdeer
Notify_pushed
Notify_pushjet
Notify_pushme
Notify_pushover
Notify_pushsafer
Notify_pushy
Notify_reddit
Notify_rocketchat
Notify_rsyslog
Notify_ryver
Notify_sendgrid
Notify_serverchan
Notify_ses
Notify_seven
Notify_sfr
Notify_signal
Notify_simplepush
Notify_sinch
Notify_slack
Notify_sms_manager
Notify_smseagle
Notify_smtp2go
Notify_sns
Notify_sparkpost
Notify_splunk
Notify_spontit
Notify_streamlabs
Notify_stride
Notify_synology_chat
Notify_syslog
Notify_techulus
Notify_telegram
Notify_threema
Notify_toasty
Notify_twilio
Notify_twist
Notify_twitter
Notify_voipms
Notify_wecombot
Notify_whatsapp
Notify_windows
Notify_workflows
Notify_wxpusher
Notify_wxteams
Notify_xbmc
Notify_xmpp
Notify_zulip
Sponsors
Troubleshooting
URLBasics
config
config_text
config_yaml
decorator_notify
persistent_storage
showcase
2
Notify_smtp2go
Chris Caron edited this page 2021-05-15 18:05:45 -04:00
Table of Contents
SMTP2Go Notifications
- Source: https://www.smtp2go.com/
- Icon Support: No
- Attachment Support: Yes
- Message Format: HTML
- Message Limit: 32768 Characters per message
Account Setup
You can create an account for free on their website.
The next step is to simply generate an API Key associated with your account (on your Dashboard) here/
Syntax
Valid syntax is as follows:
smtp2go://{user}@{domain}/{apikey}/
smtp2go://{user}@{domain}/{apikey}/{email}
smtp2go://{user}@{domain}/{apikey}/{email1}/{email2}/{emailN}
You can adjust what the Name associated with the From email is set to as well:
smtp2go://{user}@{domain}/{apikey}/?from=Luke%20Skywalker
Parameter Breakdown
Variable | Required | Description |
---|---|---|
apikey | Yes | The API Key associated with your SMTP2Go account. You can acquire your API key from your dashboard here. |
domain | Yes | The domain associated with the sending email account |
user | Yes | The user gets paired with the domain you specify on the URL to make up the From email address your recipients receive their email from. |
No | You can specify as many email addresses as you wish. Each address you identify here will represent the To. | |
from | No | This allows you to identify the name associated with the From email address when delivering your email. |
to | No | This is an alias to the email variable. You can chain as many (To) emails as you want here separating each with a comma and/or space. |
cc | No | Identify users you wish to send as a Carbon Copy |
bcc | No | Identify users you wish to send as a Blind Carbon Copy |
Example
Send a SMTP2Go notification to the email address bill.gates@microsoft.com
# Assuming the {domain} we set up with our SMTP2Go account is example.com
# Assuming our {apikey} is api-60F0DD0AB5BA11ABA421F23C91C88EF4
# We already know our To {email} is bill.gates@microsoft.com
# Assuming we want our email to come from noreply@example.com
apprise smtp2go:///noreply@example.com/api-60F0DD0AB5BA11ABA421F23C91C88EF4/bill.gates@microsoft.com