I've just added the promotions annotation on my email, it seems to work correctly and even I received my tests with my image logo and the discount code, but when I'm able to see it on my inbox in the Top Deals space, it just disappear one second after and return to the normal promotions tab space without any image or discount as any other email.
Here the code I pasted just below the <body>
tag of my email template:
<!-- Custom Logo -->
<div itemscope="" itemtype="http://schema.org/Organization">
<meta itemprop="name" content="XX">
<meta itemprop="logo" content="https://XX.png">
</div>
<!-- Deal Badge -->
<div itemscope="" itemtype="http://schema.org/DiscountOffer">
<meta itemprop="description" content="XX">
<meta itemprop="discountCode" content="XX">
<meta itemprop="availabilityStarts" content="2022-09-07T20:59:59-01:00">
<meta itemprop="availabilityEnds" content="2022-09-07T13:59:59-01:00">
</div>
How can I make this email appears permanently on Top Deals space with image and discount?
Many thanks!