• Paul Drozd 9
  • NEWBIE
  • 0 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 3
    Likes Received
  • 1
    Likes Given
  • 1
    Questions
  • 0
    Replies

Hi, community

After setting up integration between Marketing Cloud and Sales cloud we configured some Triggered Send definitions, that send emails to Contacts/Leads. Now, we need to add custom field Work_Email__c on Contact and send address verification email if Work_Email__c is changed to NOT NULL. In Triggered Send, it is not possible to select this field as the recipient's address. We are trying to achieve this using Journey Builder and Salesforce Data Events, but we cannot find appropriate Data Source :

User-added image
Is there a way to solve this issue?

Thanks

Hi, community

After setting up integration between Marketing Cloud and Sales cloud we configured some Triggered Send definitions, that send emails to Contacts/Leads. Now, we need to add custom field Work_Email__c on Contact and send address verification email if Work_Email__c is changed to NOT NULL. In Triggered Send, it is not possible to select this field as the recipient's address. We are trying to achieve this using Journey Builder and Salesforce Data Events, but we cannot find appropriate Data Source :

User-added image
Is there a way to solve this issue?

Thanks

Hi Community

We are working on a triggered send logic for Opportunity object. We are doing this in the Salesforce Marketing Cloud connector. 
According to the Marketing Cloud documentation we added the foolowing trigger for Opportunity object.
 
Trig_Opportunity on Opportunity (after insert, after update) 
{ 
    et4ae5.triggerUtility.automate('Object Name'); 
}
Once we added this trigger we are getting the following error when create new opportunity record.
>> Developer script exception : Trig_Opportunity : Trig_Opportunity: execution of BeforeInsert caused by: System.NullPointerException: Attempt to de-reference a null object (et4ae5)

Does anyone know how to fix this issue? 

Thanks in advance.