If you find you have gaps in your HTML email and have access/ability to add meta tags, add this (and save yourself some CSS):
<meta name=”x-apple-disable-message-reformatting” />
No long story. Your hubdb has a select option and you would like to filter by one of the options. Use the Column name field (mind the underscores) and choose the select option you want to filter (mind the Case Sensitivity)
{% for row in hubdb_table_rows('hubdb_table_name', 'content_type=Podcast') %}{{ row }}{% endfor %}
No long story. You know it’s available, but documentation is all over the board with mixed verbiage and gets a little tricky to reason out query params — orderBy + createdAt.
Turns out there is a prefix and a minus to flip the order to most recent.
Try this:
{% for row in hubdb_table_rows(‘name_of_hubdb’, ‘&orderBy=-hs_created_at’) %}
Good luck √ Hope this helps + Pass it on