Powerful business messaging tools, at the ready
International coverage
Our global SMS coverage services over 200 countries.
Instant engagement with customers
2-Way SMS allows you to send and receive responses direct with your audience.
Free system number
You’ll receive a free number allowing you to receive free replies (up to 48 hours).
Handy SMS features
Two-way SMS
Increase efficiency and customer engagement by receiving SMS replies to your Notifyre dash
SMS broadcasting
Easily send bulk SMS campaigns to reach larger audiences with our SMS broadcast feature.
Personalisation (dynamic fields)
Tailor your SMS sends by adding your customers’ first name or other details
Scheduling
Schedule your important SMS to send at a future date and time and we’ll do the rest
Dedicated number and Sender ID
Personalise your Sender ID to meet your needs, or receive replies to a dedicated number
Save SMS templates
Make sending an SMS simple by saving templates to use at a later date
Keep your existing fax number
You have the option to port your existing fax number or get a new one.
Secure & compliant
We understand the necessity to ensure the upmost security around sensitive patient healthcare data. That’s why we’re proudly HIPAA compliant.
No physical fax machine required
User-friendly online faxing from anywhere on any device.
Handy fax features
Dynamic cover pages
Use one of our dynamic fax cover pages, or customise your own
Campaign scheduling
Schedule your faxes to be sent at a time convenient to you
Auto-delete fax
Maintain the highest standards for security by clearing your fax history
High quality resolution
Enhance the quality of your fax send with the option to boost the resolution of your documents
Fax broadcasting
The ability to send bulk faxes to anyone, anytime, at your fingertips
Import files & documents
Sync files from your device as well as Google Drive, DropBox and OneDrive
An open-sourced environment for verified messaging, file transfer and cloud storage products audited by blockchain.
Verified SMS Messaging
A secure, verifiable and blockchain audited enhancement that can be used in sync with SMS for users across business or general use.
Secure File Transfer
Provides users with the ability to securely transfer files of any time to any organisation, professional or user connected to the Stirdie Directory.
Encrypted Cloud Storage
An encrypted cloud storage solution allowing all Stirdie users to securely store any digital data sent or received via Stirdie.
Handy Blockchain features
Automation
Existing business processes can be streamlined and automated to save time, money and reduce security and compliance risks.
Verification
By verifying every action on the blockchain through a peer-to-peer network, organisations have the ability to complete valuable transactions without risk.
Auditability
All transactions and actions are recorded on blockchain with an immutable audit trail.
Cryptography
Transactions within Stirdie are secured by cryptography, providing an added layer of security, utilizing public and private keys for encryption, decryption and verification.
Identity based blockchain
Built using a ‘proof of identity’ framework on blockchain technology.
- SMS Text
-
International coverage
Our global SMS coverage services over 200 countries.
Instant engagement with customers
2-Way SMS allows you to send and receive responses direct with your audience.
Free system number
You’ll receive a free number allowing you to receive free replies (up to 48 hours).
Handy SMS features
Two-way SMS
Increase efficiency and customer engagement by receiving SMS replies to your Notifyre dash
SMS broadcasting
Easily send bulk SMS campaigns to reach larger audiences with our SMS broadcast feature.
Personalisation (dynamic fields)
Tailor your SMS sends by adding your customers’ first name or other details
Scheduling
Schedule your important SMS to send at a future date and time and we’ll do the rest
Dedicated number and Sender ID
Personalise your Sender ID to meet your needs, or receive replies to a dedicated number
Save SMS templates
Make sending an SMS simple by saving templates to use at a later date
- Online Fax
-
Keep your existing fax number
You have the option to port your existing fax number or get a new one.
Secure & compliant
We understand the necessity to ensure the upmost security around sensitive patient healthcare data. That’s why we’re proudly HIPAA compliant.
No physical fax machine required
User-friendly online faxing from anywhere on any device.
Handy fax features
Dynamic cover pages
Use one of our dynamic fax cover pages, or customise your own
Campaign scheduling
Schedule your faxes to be sent at a time convenient to you
Auto-delete fax
Maintain the highest standards for security by clearing your fax history
High quality resolution
Enhance the quality of your fax send with the option to boost the resolution of your documents
Fax broadcasting
The ability to send bulk faxes to anyone, anytime, at your fingertips
Import files & documents
Sync files from your device as well as Google Drive, DropBox and OneDrive
- Blockchain
-
An open-sourced environment for verified messaging, file transfer and cloud storage products audited by blockchain.
Verified SMS Messaging
A secure, verifiable and blockchain audited enhancement that can be used in sync with SMS for users across business or general use.
Secure File Transfer
Provides users with the ability to securely transfer files of any time to any organisation, professional or user connected to the Stirdie Directory.
Encrypted Cloud Storage
An encrypted cloud storage solution allowing all Stirdie users to securely store any digital data sent or received via Stirdie.
Handy Blockchain features
Automation
Existing business processes can be streamlined and automated to save time, money and reduce security and compliance risks.
Verification
By verifying every action on the blockchain through a peer-to-peer network, organisations have the ability to complete valuable transactions without risk.
Auditability
All transactions and actions are recorded on blockchain with an immutable audit trail.
Cryptography
Transactions within Stirdie are secured by cryptography, providing an added layer of security, utilizing public and private keys for encryption, decryption and verification.
Identity based blockchain
Built using a ‘proof of identity’ framework on blockchain technology.
Ways to use Notifyre
ONLINE DASHBOARD
A single hub for all your communication needs
Use Notifyre from any device with an internet connection, allowing you to manage your organisation’s fax or SMS sending and receiving from anywhere. All account features are displayed on NotifyreDash, including advanced features such as responsive cover pages, mail merge, fax broadcast & more.
Continue using your most familiar channels
Notifyre gives you the option to use your email to directly manage your organisations faxing, SMS and more. No matter what email client you’re using, you can send and receive faxes or SMS instantly without the need for any additional software.
DEVELOPER API
Built by developers, for developers
Implement our fax and SMS features easily into your workflows with our powerful set of API’s. Our APIs enable seamless, easy integration directly with your current business applications, website and software. Start sending fax and SMS in minutes with instant deployment.
var recipients = new List
{
new SmsRecipient
{
Type = SubmitSmsRequestRecipientType.MobileNumber,
Value = “+6141111111”
}
};
var request = new SubmitSmsRequest
{
Body = "Hello John!",
Recipients = recipients,
From = "+61412345678"
};
var response = await _smsService.SubmitSmsAsync(request);
const { NotifyreAPI, RecipientType } = require('notifyre-nodejs-sdk');
const notifyreAPI = new NotifyreAPI('apiKey');
const smsService = notifyreAPI.getSmsService();
await smsService.submitSms({
body: 'test',
from: '',
recipients: [{ type: RecipientType.SmsNumber, value: '+61444444444' }],
scheduledDate: null
});
import notifyre
client = notifyre.Client('YOUR_ACCESS_KEY')
message = client.message_create(
'Notifyre',
'1234567890',
'This is a test message.'
)
msg, err := sms.Create(
notifyre.New("YOUR_ACCESS_KEY"),
"notifyre",
[]string{"1234567890"},
"This is a test message.",
nil,
)
NotifyreService service = new NotifyreServiceImpl("YOUR_ACCESS_KEY");
NotifyreClient notifyreClient = new NotifyreClient(service);
List recipients = new ArrayList<>();
recipients.add(new BigInteger('1234567890'));
MessageResponse response = NotifyreClient.sendMessage(
"Notifyre",
"This is a test message.",
recipients
);
Mobile, Tablet & Desktop App
Communication technology on-the-go
Manage your business communications from anywhere on any device using our simple app built for mobile or tablet. A seamless way to connect with customers, clients and colleagues on the go – Download the app for free on iOS and Android.
Why Choose Notifyre
No Contracts – cancel at anytime
Fast, simple setup with no hidden fees and no lock-in contracts.
Global Reach
International coverage for 200+ countries across our global carrier network.
99.99% Uptime Guarantee
We bring you total of peace of mind to ensure your critical communications are successfully delivered.
Intuitive, easy-to-use interface
We built our interface personalised to our customers’ needs. Move smoothly between sending a fax to sending an SMS in seconds.