Developer Function: Server Script: notifications.New
## Overview
Create a notification object. Notification settings can be added to the generated object and sent anytime.
## Syntax
```
notifications.New()
```
## Return Value
Return the notification object.
## Usage Example
The following example sends a notification to xxxxx@example.com with the subject "Notification Test" and the content "Notified by server script".
##### JavaScript
```
let notification = notifications.New();
notification.Address = 'xxxxx@example.com';
notification.Title = 'Notification Test';
notification.Body = 'Notified by server script.';
notification.Send();
```
## Notes
This is a method used in "[Server Script](/en/manual/table-management-server-script)". It cannot be used in "[Script](/en/manual/table-management-script)".
## Related Information
・[Table Management: Server Script](/manual/table-management-server-script)
・[Execution Timing for Each Object](/manual/server-script-conditions)
・[Notifications Object](/manual/server-script-notifications)
・[Notification Object](/manual/server-script-notification)
・[Notifications.Get Method](/manual/server-script-notifications-get)