# Notifications Settings [Email & SMS configuration]

[![image.png](https://docs.senangurus.com/uploads/images/gallery/2025-10/scaled-1680-/tIRimage.png)](https://docs.senangurus.com/uploads/images/gallery/2025-10/tIRimage.png)

### <span id="bkmrk-setting-notification-1">Setting Notification SMS</span>

To Send SMS notifications you need to setup SMS configuration details.

Go to -&gt; Business Settings -&gt; SMS settings

from here we can set up SMS for most of the vendors having support for REST API, most of the support it. If not then check with your provider

Go to the REST API documentation of your vendor. Contact your vendor if you can’t find it.

Here you’ll find 3 different service type: Nexmo, Twilio, and others.

### <span id="bkmrk-setting-up-sms-for-n-1">Setting up SMS for NEXMO</span>

1. Create a new account in nexmo.
2. From your nexmo dashboard, go to account settings, here you’ll find the API key and secret, the From field enter the from the number provided by nexmo. Enter these details in the pos and try sending a test message.

### <span id="bkmrk-setting-up-sms-for-t-1">Setting up SMS for twilio</span>

1. Go to Twilio &amp; login with your account.
2. Get the SID, Access token, and From information. On your project Twilio Dashboard, you can find the Account SID and Auth Token
3. Save it and try sending a message

### <span id="bkmrk-setting-up-sms-for-o-1">Setting up SMS for others</span>

Let the api structure is

http://your-sms-website.com/api/sendmsg.php?user=&amp;pass=&amp;sender=&amp;phone=&amp;text=

So the configuration will be as follows

**URL**: https://rest.nexmo.com/sms/json  
**Send to parameter name**: phone  
**Message parameter name**: text  
**Request Method**: GET  
**Parameter 1 key**: user **Parameter 1 value**:  
**Parameter 2 key**: pass **Parameter 2 value**: **Parameter 3 key**: sender **Parameter 3 value**:

### <span id="bkmrk-example-four%3A-settin-1">Example Four: Setting up SMS for others</span>

Let the api structure is

$api\_url = “http://sms-pos.testsms.com/app/smsapi/index.php?username=&amp;password=&amp;campaign=XXXXXX&amp;routeid=XXXXXX&amp;type=text&amp;contacts=97656XXXXX,98012XXXXX&amp;senderid=XXXXXX&amp;msg=Hello+People%2C+have+a+great+day”;

So the configuration will be as follows

**URL**: http://sms-pos.testsms.com/app/smsapi/index.php  
**Send to parameter name**: contacts  
**Message parameter name**: msg  
**Request Method**: GET  
**Parameter 1 key**: username **Parameter 1 value**:  
**Parameter 2 key**: password **Parameter 2 value**:  
**Parameter 3 key**: campaign **Parameter 3 value**: XXXXXX  
**Parameter 4 key**: routeid **Parameter 4 value**: XXXXXX  
**Parameter 5 key**: type **Parameter 5 value**: text  
**Parameter 6 key**: senderid **Parameter 6 value**: XXXXXX

### <span id="bkmrk-setting-headers%3A-1">Setting headers:</span>

If required in your api, you can also set headers

**Header 1 key**: **Header 1 value**:  
**Header 2 key**: **Header 2 value**:  
**Header 3 key**: **Header 3 value**:

### <span id="bkmrk-setting-notification-3">Setting Notification Email</span>

Go to Settings -&gt; Business Settings -&gt; Email settings

Add all the Email SMTP configuration details &amp; it will work.

### <span id="bkmrk-business-level-mail--1">Business-level mail setup</span>

For sending mail notifications, the business-level mail setup should be done.

For this provide the required details in Settings -&gt; Business Settings -&gt; Email settings

### <span id="bkmrk-application-level-ma-1">Application-level mail setup</span>

For the purpose of receiving forgot password reset link, the application-level mail setup is to be done on .env file.

Refer this – [Document Link](https://docs.senangurus.com/books/senangurus-business/page/setting-up-emailsmtp-for-forgot-password-other-email-notifications)

#### **<span id="bkmrk-faq%3A-1">FAQ:</span>**

**1. Is it possible to send SMS when installing in localhost?**

Yes it is possible to send SMS from localhost with an internet connection

**1. Whether SMS feature work without adding country codes to mobile numbers?**

Some APIs will work without adding country code and some may not. It is based on your API provider.