Hi Jame,
I have searched throught official document and just got the same article you posted with available customization.
Could you share me an example of your mentioned inner and outer background for the email means?
As per my understanding, if those concepts refer to some element like Hero Image, (image with text on it),unfortunately there is no design tool to achieve.
From perspective of CSS, I found that most of drag-and-drop elements are block level element, so if we want to make a marketing email with advanced layout and appearance, we may have to edit HTML source code directly.
As the doc you posted, drag-and-drop elements are identified by data-editorblocktype, my suggestion is that we don't make customization on those elements with attributes as possible(except color, padding etc.)
- We could insert our Hero Image with custom CSS rules after the elements that were detected by designer editor:
- Add essential elements to our custom email template,
(actually you can add them with Assis-edit button, here I just list them)
Must-have:
Unsubscription link and physical address:
<div
data-editorblocktype="Text"
style="text-align: center;">
<p
style="text-align: center;">
<span
style="font-size:18px;">
<strong>{{msdyncrm_contentsettings.msdyncrm_addressmain}}</strong>
</span>
</p>
<p
style="text-align: center;">
<span
style="font-size:18px;">
<strong>{{msdyncrm_contentsettings.msdyncrm_addressline2}}</strong>
</span>
</p>
<p>
<a
href="{{msdyncrm_contentsettings.msdyncrm_subscriptioncenter}}">Unsubscribe</a>
</p>
</div>
Better-have:
Forward to a friend, View in Browser
<div
data-editorblocktype="Text">
<p
class="header-text xsmall-text text-right link-text"
style="text-align: right;">
<a
href="{{msdyncrm_contentsettings.msdyncrm_forwardtoafriend}}">
<span
style="color:#000000;">Forward to a friend</span>
</a>
<span
style="color:#000000;"> |
</span>
<a
href="{{Message.ViewAsWebpageURL}}">
<span
style="color:#000000;">View in browser</span>
</a>
</p>
</div>
- My final layout in a testing marketing email from customer journey
Now that you have updated early version, you could make a well-layout marketing email with new layout functionality.
In a word, custom CSS rule would be necessary for advanced layout.
Regards,
Clofly