In Connections notification, I really don't like using dozens of different senders for every feature
That's why in notification-config.xml I always add the property for always using globalSenderName. You have to add it manually here
<?xml version="1.0" encoding="UTF-8"?><!-- Copyright IBM Corp. 2008, 2013 All Rights Reserved. --><config buildlevel="LC4.0_20130311_1432" enabled="true" id="notification-config" version="4.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="notification-config.xsd">
<properties>
<property name="globalSenderEmailAddress">global-admin@esprinet.com</property>
Notifications (where applicable) -->
<property name="includeMobileLinksInNotifications">false</property>
<!-- If true no embedded experience mime parts will be included in notifications -->
<property name="disableEmbeddedAppsInNotifications">false</property>
</properties>
<handlers>
That's why in notification-config.xml I always add the property for always using globalSenderName. You have to add it manually here
<?xml version="1.0" encoding="UTF-8"?><!-- Copyright IBM Corp. 2008, 2013 All Rights Reserved. --><config buildlevel="LC4.0_20130311_1432" enabled="true" id="notification-config" version="4.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="notification-config.xsd">
<properties>
<property name="globalSenderEmailAddress">global-admin@esprinet.com</property>
<property name="alwaysUseGlobalSender">true</property> <property name="globalSenderName">Info Connections</property><!-- If true a link to Connections Mobile service will be included in
Notifications (where applicable) -->
<property name="includeMobileLinksInNotifications">false</property>
<!-- If true no embedded experience mime parts will be included in notifications -->
<property name="disableEmbeddedAppsInNotifications">false</property>
</properties>
<handlers>
Comments