In your composer.json :
{
"require": {
"vlabs/notification-bundle": "^2"
},
"config": {
"secure-http": false
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/V-labs/contexts"
},
{
"type": "composer",
"url": "http://packages.v-labs.fr/"
}
]
}The config of the Vlabs Notification Bundle should be in your config.yml if you don't use Symfony Flex, otherwise, you should rather have a packages/vlabs_notification.yaml config file.
From the 2.1.0 version, you can define the root namespace where your notification messages are, the default value is 'AppBundle\Notification'.
In your config file :
vlabs_notification:
config:
root_namespace: "AppBundle\Notification"Find below the configuration for the current version.
In your config file :
vlabs_notification:
swiftmailer:
enabled: true
default_from_email: [email protected]
default_from_name: Default Sender NameFind below the configuration for the current version.
In your config file :
vlabs_notification:
mailer:
enabled: true
default_from_email: [email protected]
default_from_name: Default Sender NameOVH SMS notifications is now handled by this bundle, from the 1.2.0 version.
In your config file :
vlabs_notification:
sms:
enabled: true
app_key: "changeme"
app_secret: "changeme"
consumer_key: "changeme"In your composer.json :
{
"require": {
"ovh/php-ovh-sms": "1.1"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/V-labs/php-ovh-sms.git"
}
]
}FCM (Firebase) is enabled by default from the 1.1.0 version, find below the configuration for the current version. You can still configure the bundle to work with the old GCM with the config below.
In your config file :
vlabs_notification:
push:
enabled: true
gcm: trueIn your composer.json :
{
"require": {
"richsage/rms-push-notifications-bundle": "dev-fcm"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/V-labs/RMSPushNotificationsBundle"
}
]
}Slack message is now handled by this bundle, from the 1.2.4 version, find below the configuration for the current version.
In your config file :
vlabs_notification:
slack:
enabled: true
app_endpoint: "https://hooks.slack.com/services/changeme"In your composer.json :
{
"require": {
"guzzlehttp/guzzle": ">=6.0"
}
}Since 2.2 version, in your class that extend AbstractMessage, you can set a value to the property options that will be used to add options to your message, here is a simple example :
class MyCustomSwiftMailerMessage extends AbstractMessage
{
public function build()
{
$options = new SwiftMailerOptions();
$options->setValueForKey(SwiftMailerOptions::FROM_EMAIL, '[email protected]');
$options->setValueForKey(SwiftMailerOptions::FROM_NAME, 'My Email');
$options->setValueForKey(SwiftMailerOptions::SUBJECT, 'My subject');
$options->setValueForKey(SwiftMailerOptions::CC, '[email protected]');
$this->to = '[email protected]';
$this->body = 'Put your body here.';
$this->options = $options;
}
}You will find below the options that you can set in a SwiftMailerOptions.
| Option | Allowed Types | Constant |
|---|---|---|
| from_email | string | SwiftMailerOptions::FROM_EMAIL |
| from_name | string | SwiftMailerOptions::FROM_NAME |
| subject | string | SwiftMailerOptions::SUBJECT |
| cc | string, string[] | SwiftMailerOptions::CC |
| bcc | string, string[] | SwiftMailerOptions::BCC |
| replyTo | string, string[] | SwiftMailerOptions::REPLY_TO |
| attachments | array | SwiftMailerOptions::ATTACHMENTS |
You will find below the options that you can set in a MailerOptions.
| Option | Allowed Types | Constant |
|---|---|---|
| from_email | string | MailerOptions::FROM_EMAIL |
| from_name | string | MailerOptions::FROM_NAME |
| subject | string | MailerOptions::SUBJECT |
| cc | string, string[] | MailerOptions::CC |
| bcc | string, string[] | MailerOptions::BCC |
| replyTo | string, string[] | MailerOptions::REPLY_TO |
| attachments | array | MailerOptions::ATTACHMENTS |
You will find below the options that you can set in a RmsPushOptions.
| Option | Allowed Types | Constant |
|---|---|---|
| data | array | RmsPushOptions::DATA |
| gcm | array | RmsPushOptions::GCM |
| fcm | array | RmsPushOptions::FCM |
| webfcm | array | RmsPushOptions::WEBFCM |
You will find below the options that you can set in a FirebasePushOptions.
| Option | Allowed Types | Constant |
|---|---|---|
| title | string | FirebasePushOptions::TITLE |
| image_url | string | FirebasePushOptions::IMAGE_URL |
| data | array | FirebasePushOptions::DATA |
| web_push_config | array | FirebasePushOptions::WEB_PUSH_CONFIG |