Using Brevo service on WP Mail SMTP

Brevo (formerly Sendinblue) is one of our recommended mailers in WP Mail SMTP. It’s a transactional email provider with scalable price plans, so it’s suitable for any size of business.

I chose Brevo’s because of its free plan that allows to send up to 300 emails a day. Also, they don’t require to enter my credit card to try it out.

If they perform well and my needs require an upgrade, I can always just switch to a higher plan to increase my sending limits.

All you need to do is generate an API Key and connect it with any plugins that requires email such as forms.

List all posts in custom post type by taxonomy

$args = array('post_type' => 'custom_post_type',
'tax_query' => array(
array(
'taxonomy' => 'custom_taxonomy',
'field' => 'slug',
'terms' => $custom_term->slug,
),
),
);

$loop = new WP_Query($args);
if($loop->have_posts()) {

while($loop->have_posts()) : $loop->the_post();
echo get_the_title();
endwhile;
}