neoSmtp2Go
Use SMTP2GO services to send emails and SMS directly from your app. More info:
https://smtp2go.com
IMPORTANT: In order to use this plugin, you need to configure your sender domain as explained in Smtp2Go site and create an API key.
neoSmtp2GoSetApiKey
Purpose: |
Set Smtp2Go Api Key |
Category: |
neoSmtp2Go |
Syntax: |
neoSmtp2GoSetApiKey "theKey"
theKey Smtp2Go Api Key |
neoSmtp2GoSendHtml
Purpose: |
Send an email using SMTP2GO services. |
Category: |
neoSmtp2Go |
Syntax: |
neoSmtp2GoSendHtml "theTo" "theSender" "theReplyTo" "theSubject" htmlBody successCallback errorCallback
theTo To (ie: 'John Wayne ') theSender From (ie: 'Peter Parker ') theReplyTo Reply to (optional) (ie: 'Info ') theSubject Subject htmlBody Email body (HTML) successCallback Success callback subroutine (optional) errorCallback Error callback subroutine (optional) |
neoSmtp2GoSendHtmlWithAttachment
Purpose: |
Send an HTML email with a fike attachment using SMTP2GO services. |
Category: |
neoSmtp2Go |
Syntax: |
neoSmtp2GoSendHtmlWithAttachment "theTo" "theSender" "theReplyTo" "theSubject" htmlBody "theFileName" theMimeType "theBase64Data" successCallback errorCallback
theTo To (ie: 'John Wayne ') theSender From (ie: 'Peter Parker ') theReplyTo Reply to (optional) (ie: 'Info ') theSubject Subject htmlBody Email body (HTML) theFileName File attachment file name theMimeType Mime type theBase64Data File content in Base64 format successCallback Success callback subroutine (optional) errorCallback Error callback subroutine (optional) |
neoSmtp2GoSendText
Purpose: |
Send an email using SMTP2GO services. |
Category: |
neoSmtp2Go |
Syntax: |
neoSmtp2GoSendText "theTo" "theSender" "theReplyTo" "theSubject" "textBody" successCallback errorCallback
theTo To (ie: 'John Wayne ') theSender From (ie: 'Peter Parker ') theReplyTo Reply to (optional) (ie: 'Info ') theSubject Subject textBody Email body (text) successCallback Success callback subroutine (optional) errorCallback Error callback subroutine (optional) |
neoSmtp2GoSendSMS
Purpose: |
Send an SMS using SMTP2GO services. |
Category: |
neoSmtp2Go |
Syntax: |
neoSmtp2GoSendSMS "destNumber" "theText" successCallback errorCallback
destNumber Destination number (ie: +34666666666) theText Text to send successCallback Success callback subroutine (optional) errorCallback Error callback subroutine (optional) |