I'm trying to bring in data from another (shared) DE and then using IF statement to show a specific content block depending on the outcome. I have managed to get rid of the errors but no content block is showing. Where am I going wrong?
SET @CustomerContactable = Lookup ('ENT.Customerdata', 'CustomerContactable', 'Id', @SubscriberKey)
IF @CustomerContactable == 'True' THEN SET @BodyContent = ContentBlockbyId("127410") ELSE
SET @BodyContent = ContentBlockbyId("127411") ENDIF]%%```