\" plugin_version.type = \"hidden\" form.appendChild(plugin_version) var wordpress_version = document.createElement(\"input\") wordpress_version.name = \"wordpress_version\" wordpress_version.id = \"wordpress_version\" wordpress_version.value = '$wp_version' wordpress_version.type = \"hidden\" form.appendChild(wordpress_version) } },200); "; } else { echo ''; } } else { echo ''; } } else { echo ""; return; } } } /** * Google analytics . */ function ga_footer() { if ( ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { $banner_discarded_count = get_option( 'sm_beta_banner_discarded_count' ); if ( 1 === $banner_discarded_count || '1' === $banner_discarded_count ) { echo ''; } } } /** * Check if the requirements of the sitemap plugin are met and loads the actual loader * * @package sitemap * @since 4.0 */ function sm_setup() { $fail = false; // Check minimum PHP requirements, which is 5.2 at the moment. if ( version_compare( PHP_VERSION, '5.2', '<' ) ) { add_action( 'admin_notices', 'sm_add_php_version_error' ); $fail = true; } // Check minimum WP requirements, which is 3.3 at the moment. if ( version_compare( $GLOBALS['wp_version'], '3.3', '<' ) ) { add_action( 'admin_notices', 'sm_add_wp_version_error' ); $fail = true; } if ( ! $fail ) { require_once trailingslashit( dirname( __FILE__ ) ) . 'class-googlesitemapgeneratorloader.php'; } } /** * Adds a notice to the admin interface that the WordPress version is too old for the plugin * * @package sitemap * @since 4.0 */ function sm_add_wp_version_error() { /* translators: %s: search term */ echo '

' . esc_html( __( 'Your WordPress version is too old for XML Sitemaps.', 'google-sitemap-generator' ) ) . '
' . esc_html( sprintf( __( 'Unfortunately this release of Google XML Sitemaps requires at least WordPress %4$s. You are using WordPress %2$s, which is out-dated and insecure. Please upgrade or go to active plugins and deactivate the Google XML Sitemaps plugin to hide this message. You can download an older version of this plugin from the plugin website.', 'google-sitemap-generator' ), 'plugins.php?plugin_status=active', esc_html( $GLOBALS['wp_version'] ), 'http://www.arnebrachhold.de/redir/sitemap-home/', '3.3' ) ) . '

'; } /** * Adds a notice to the admin interface that the WordPress version is too old for the plugin * * @package sitemap * @since 4.0 */ function sm_add_php_version_error() { /* translators: %s: search term */ echo '

' . esc_html( __( 'Your PHP version is too old for XML Sitemaps.', 'google-sitemap-generator' ) ) . '
' . esc_html( sprintf( __( 'Unfortunately this release of Google XML Sitemaps requires at least PHP %4$s. You are using PHP %2$s, which is out-dated and insecure. Please ask your web host to update your PHP installation or go to active plugins and deactivate the Google XML Sitemaps plugin to hide this message. You can download an older version of this plugin from the plugin website.', 'google-sitemap-generator' ), 'plugins.php?plugin_status=active', PHP_VERSION, 'http://www.arnebrachhold.de/redir/sitemap-home/', '5.2' ) ) . '

'; } /** * Returns the file used to load the sitemap plugin * * @package sitemap * @since 4.0 * @return string The path and file of the sitemap plugin entry point */ function sm_get_init_file() { return __FILE__; } /** * Register beta user consent function. */ function register_consent() { if ( ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { if ( is_user_logged_in() && current_user_can( 'manage_options' ) ) { if ( isset( $_POST['user_consent_yes'] ) ) { if (isset($_POST['user_consent_yesno_nonce_token']) && check_admin_referer('user_consent_yesno_nonce', 'user_consent_yesno_nonce_token')){ update_option( 'sm_user_consent', 'yes' ); } } if ( isset( $_POST['user_consent_no'] ) ) { if (isset($_POST['user_consent_yesno_nonce_token']) && check_admin_referer('user_consent_yesno_nonce', 'user_consent_yesno_nonce_token')){ update_option( 'sm_user_consent', 'no' ); } } if ( isset( $_GET['action'] ) ) { if ( 'no' === $_GET['action'] ) { if ( $_SERVER['QUERY_STRING'] ) { if( strpos( $_SERVER['QUERY_STRING'], 'google-sitemap-generator' ) ) { update_option( 'sm_show_beta_banner', 'false' ); $count = get_option( 'sm_beta_banner_discarded_count' ); if ( gettype( $count ) !== 'boolean' ) { update_option( 'sm_beta_banner_discarded_count', (int) $count + 1 ); } else { add_option( 'sm_beta_banner_discarded_on', gmdate( 'Y/m/d' ) ); update_option( 'sm_beta_banner_discarded_count', (int) 1 ); } GoogleSitemapGeneratorLoader::setup_rewrite_hooks(); GoogleSitemapGeneratorLoader::activate_rewrite(); } else { add_option( 'sm_beta_notice_dismissed_from_wp_admin', 'true' ); } } else { add_option( 'sm_beta_notice_dismissed_from_wp_admin', 'true' ); } } } if ( isset( $_POST['enable_updates'] ) ) { if (isset($_POST['enable_updates_nonce_token']) && check_admin_referer('enable_updates_nonce', 'enable_updates_nonce_token')){ if ( 'true' === $_POST['enable_updates'] ) { $auto_update_plugins = get_option( 'auto_update_plugins' ); if ( ! is_array( $auto_update_plugins ) ) { $auto_update_plugins = array(); } array_push( $auto_update_plugins, 'google-sitemap-generator/sitemap.php' ); update_option( 'auto_update_plugins', $auto_update_plugins ); } elseif ( 'false' === $_POST['enable_updates'] ) { update_option( 'sm_hide_auto_update_banner', 'yes' ); } } } /* if ( isset( $_POST['disable_plugin'] ) ) { if (isset($_POST['disable_plugin_sitemap_nonce_token']) && check_admin_referer('disable_plugin_sitemap_nonce', 'disable_plugin_sitemap_nonce_token')){ if ( strpos( $_POST['disable_plugin'], 'all_in_one' ) !== false ) { $default_value = 'default'; $aio_seo_options = get_option( 'aioseo_options', $default_value ); if ( $aio_seo_options !== $default_value ) { $aio_seo_options = json_decode( $aio_seo_options ); $aio_seo_options->sitemap->general->enable = 0; update_option( 'aioseo_options', json_encode( $aio_seo_options ) ); } } elseif( strpos( $_POST['disable_plugin'], 'wp-seo' ) !== false ) { $yoast_options = get_option( 'wpseo' ); $yoast_options['enable_xml_sitemap'] = false; update_option( 'wpseo', $yoast_options ); } } } */ } } $updateUrlRules = get_option('sm_options'); if(!isset($updateUrlRules['sm_b_rewrites2']) || $updateUrlRules['sm_b_rewrites2'] == false){ GoogleSitemapGeneratorLoader::setup_rewrite_hooks(); GoogleSitemapGeneratorLoader::activate_rewrite(); GoogleSitemapGeneratorLoader::activation_indexnow_setup(); if (isset($updateUrlRules['sm_b_rewrites2'])) { $updateUrlRules['sm_b_rewrites2'] = true; update_option('sm_options', $updateUrlRules); } else { $updateUrlRules['sm_b_rewrites2'] = true; add_option('sm_options', $updateUrlRules); update_option('sm_options', $updateUrlRules); } } if(isset($updateUrlRules['sm_links_page'] )){ $sm_links_page = intval($updateUrlRules['sm_links_page']); if($sm_links_page < 1000) { $updateUrlRules['sm_links_page'] = 1000; update_option('sm_options', $updateUrlRules); } } if(!isset($updateUrlRules['sm_b_activate_indexnow']) || $updateUrlRules['sm_b_activate_indexnow'] == false){ $updateUrlRules['sm_b_activate_indexnow'] = true; $updateUrlRules['sm_b_indexnow'] = true; update_option('sm_options', $updateUrlRules); } } function disable_plugins_callback(){ if (current_user_can('manage_options')) { check_ajax_referer('disable_plugin_sitemap_nonce', 'nonce'); $pluginList = sanitize_text_field($_POST['pluginList']); $pluginsToDisable = explode(',', $pluginList); foreach ($pluginsToDisable as $plugin) { if ($plugin === 'all-in-one-seo-pack/all_in_one_seo_pack.php') { /* all in one seo deactivation */ $aioseo_option_key = 'aioseo_options'; if ($aioseo_options = get_option($aioseo_option_key)) { $aioseo_options = json_decode($aioseo_options, true); $aioseo_options['sitemap']['general']['enable'] = false; update_option($aioseo_option_key, json_encode($aioseo_options)); } } if ($plugin === 'wordpress-seo/wp-seo.php') { /* yoast sitemap deactivation */ if ($yoast_options = get_option('wpseo')) { $yoast_options['enable_xml_sitemap'] = false; update_option('wpseo', $yoast_options); } } if ($plugin === 'jetpack/jetpack.php') { /* jetpack sitemap deactivation */ $modules_array = get_option('jetpack_active_modules'); if(is_array($modules_array)) { if (in_array('sitemaps', $modules_array)) { $key = array_search('sitemaps', $modules_array); unset($modules_array[$key]); update_option('jetpack_active_modules', $modules_array); } } } if ($plugin === 'wordpress-sitemap') { /* Wordpress sitemap deactivation */ $options = get_option('sm_options', array()); if (isset($options['sm_wp_sitemap_status'])) $options['sm_wp_sitemap_status'] = false; else $options['sm_wp_sitemap_status'] = false; update_option('sm_options', $options); } } echo 'Plugins sitemaps disabled successfully'; wp_die(); } } function conflict_plugins_admin_notice(){ GoogleSitemapGeneratorLoader::create_notice_conflict_plugin(); } /* send to index updated url */ function indexnow_after_post_save($new_status, $old_status, $post) { $indexnow = get_option('sm_options'); $indexNowStatus = isset($indexnow['sm_b_indexnow']) ? $indexnow['sm_b_indexnow'] : false; if ($indexNowStatus === true) { $newUrlToIndex = new GoogleSitemapGeneratorIndexNow(); $is_changed = false; $type = "add"; if ($old_status === 'publish' && $new_status === 'publish') { $is_changed = true; $type = "update"; } else if ($old_status != 'publish' && $new_status === 'publish') { $is_changed = true; $type = "add"; } else if ($old_status === 'publish' && $new_status === 'trash') { $is_changed = true; $type = "delete"; } if ($is_changed) $newUrlToIndex->start(get_permalink($post)); } } // Don't do anything if this file was called directly. if ( defined( 'ABSPATH' ) && defined( 'WPINC' ) && ! class_exists( 'GoogleSitemapGeneratorLoader', false ) ) { sm_setup(); if(isset(get_option('sm_options')['sm_wp_sitemap_status']) ) $wp_sitemap_status = get_option('sm_options')['sm_wp_sitemap_status']; else $wp_sitemap_status = true; if($wp_sitemap_status = true) $wp_sitemap_status = '__return_true'; else $wp_sitemap_status = '__return_false'; add_filter( 'wp_sitemaps_enabled', $wp_sitemap_status ); add_action('wp_ajax_disable_plugins', 'disable_plugins_callback'); add_action('admin_notices', 'conflict_plugins_admin_notice'); } opens – Affiliate Marketing Programs | CBOMO.COM https://cbomo.com Your Affiliate Online Money Opportunities Tue, 03 Oct 2023 22:04:23 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 Taco Bell Employee Hospitalized After Customer Opens Fire https://cbomo.com/taco-bell-employee-hospitalized-after-customer-opens-fire/ https://cbomo.com/taco-bell-employee-hospitalized-after-customer-opens-fire/#respond Tue, 03 Oct 2023 22:04:23 +0000 https://cbomo.com/taco-bell-employee-hospitalized-after-customer-opens-fire/ [ad_1]

A Taco Bell employee was nearly fatally shot over the weekend after a disgruntled customer pulled out a handgun after reportedly not receiving the correct amount of change.

On Saturday night, local authorities in Charlotte, North Carolina discovered an employee who had been shot twice and in need of assistance.

Witnesses claimed that a man, who has been identified as 67-year-old Doll McLendon, grew aggressive in the drive-thru line after receiving his order and counting his change.

The suspect then reportedly parked the car, went into the restaurant, and began shooting.

Related: Jack in the Box Employee Shoots at Customer Over Alleged Missing Curly Fries: Video

“Words were not being used and someone turned to a violent action with a gun,” Major Torri Tellis of the Charlotte-Mecklenburg Police Department said in a news conference. “At this point, we can’t say what actually caused this.”

Doll McLendon is currently being held at the Mecklenburg County Jail (via MCSO)

The unnamed employee was taken to the hospital with “life-threatening” injuries.

The suspect was tracked down after fleeing the scene due to license plate tracking and surveillance footage from the restaurant.

McLendon has been charged with assault with a deadly weapon with “intent to kill inflicting serious injury and discharging a weapon into occupied property” after surrendering to authorities on his property.

Sadly, this violent incident is not the first of its kind.

Related: Taco Bell Employee Charged With Fraud, Theft After Stealing Customer Credit Card Information

Last week, a family sued fast-food chain Jack-in-the-Box for negligence over a 2021 incident where an employee shot at a man in the drive-thru after the two got into a heated argument over an order of curly fries.

Taco Bell told USA Today in a statement that the company was “shocked” to hear of the incident and confirmed that the franchise owner of the location is “working with the local authorities in their investigation and will be offering support to all team members present.”

[ad_2]

Source link

]]>
https://cbomo.com/taco-bell-employee-hospitalized-after-customer-opens-fire/feed/ 0
19 Email Marketing Mistakes Impact Opens, Clicks, Conversions https://cbomo.com/19-email-marketing-mistakes-impact-opens-clicks-conversions/ https://cbomo.com/19-email-marketing-mistakes-impact-opens-clicks-conversions/#respond Wed, 23 Aug 2023 15:19:41 +0000 https://cbomo.com/19-email-marketing-mistakes-impact-opens-clicks-conversions/ [ad_1]

There’s so much happening in marketing; search is upside down with generative AI, and social media platforms have algorithms that want to retain users.

With all this, email marketing remains one of the most effective and trusted marketing channels because it builds a direct relationship between you and your customer.

But are email marketers always happy with their open, click, and conversion rates?

If not, it might be due to mistakes that are hindering the success of your email marketing.

While working with many B2B, SaaS, tech, and ecommerce companies, we have identified a few things that could be improved with their email marketing.

So, I thought I’d list them here to help email marketers identify if they’re making any of these mistakes and preventing themselves from driving better open, clicking, and conversion rates.

Disclaimer: These mistakes are purely based on my experiences, and examples are just for inspiration and learning purposes.

19 Email Marketing Mistakes That Cost You Big Time Today

1. Missing Out On The Email Purpose

One of the biggest email marketing mistakes is not defining the “why” of the email.

If you don’t know what you want to achieve with your email, you’re efforts are likely in vain.

You need to answer this: Why are you looking to send this email? Some examples might be:

  • Attract the right audience.
  • Get leads.
  • More sign-ups.
  • Drive audience interaction.

Once you have this answer, every other aspect of the email can fall into place – such as how the email copy should be, what the CTA would be, and more!

Email marketing calendar by Missive Digital

Copy this email marketing calendar template with reporting by Missive Digital. (Disclaimer: I’m the founder of Missive Digital.)

2. Failing To Define The Success Metrics

I’ve purposefully mentioned this email marketing mistake early on. Just like the purpose of your email, you cannot skip defining success metrics.

What do I mean by the success metrics of email marketing? They are:

  • Conversions.
  • Traffic.
  • Open rate.
  • Unique opens.
  • Click-through rate.
  • Unique clicks.
  • Conversion rate.
  • Unsubscribes.
  • Number of soft and hard bounces.
  • Spam rate.

And more, depending on the industry you’re in.

But why is not defining these email marketing key performance indicators (KPIs) a mistake? Because every email is not for traffic and conversions.

Sometimes it might be for:

  • Increase the open rate by 30%.
  • Add more unique opens by 33%.
  • Reduce the unsubscribes by 10%.
  • Increase unique clicks by 80%.
  • Etc.

For example, the first KPI metric you measure might be ensuring that people open your welcome email.

You might make variations in subject lines and test among different new subscribers.

With that new welcome email, the agenda is not getting conversions, as the challenge you’re trying to solve is the open rates.

So, as mentioned above, any email you send has a different purpose, and every goal has different KPIs to measure.

Until and unless you define such success metrics beforehand, you won’t craft the email copy accordingly and hence, you won’t see results.

3. Not Upgrading The Subscribers’ Tags/Segments

Is it a new subscriber you’re speaking to? Or have they become a subscriber after unsubscribing?

Did a subscriber attend your webinar? If yes, how many times?

Does a customer make a repeat purchase every season?

In email marketing, keeping track of and updating the subscribers’ tags becomes mandatory. When you track a subscriber’s engagement, you can send them more relevant messages.

For example, you can send a special discount to a loyal audience member. Retail brands still do it during festive seasons for their customers.

You can email them with an exclusive offer and make sure they visit the store to avail of the discounts. That’s how you can make your customers feel special.

The same can also happen in the B2B or SaaS industry. You can upgrade the subscribers’ tags every time a person progresses in the customer journey – like attending webinars, downloading whitepapers/ebooks, etc.

For example, AllEvents.in is an event publishing and discovery platform which used to send me one email every week based on the event interactions that I had with its platform or emails.

I was following Serpzilla’s Ahmedabad event on the platform as I was a speaker.

Event platform AllEvents send personalized emails - this can drive more open rates and clicksScreenshot from Serpzilla, July 2023

So, this event platform also emailed me about another event by the same organizer, but in Bangalore.

Emails need to be sent as per the user behaviou to prevent email marketing mistakes.Screenshot from author, July 2023

Most email automation tools have this functionality to add tags in email workflows. We must identify when a subscriber is moving forward or backward in the customer journey.

As this is a tedious and time-consuming task, and sometimes the database is quite large in which to identify their journey and update the tags, some email marketers skip this.

Doing this would negatively impact your ROI, so you shouldn’t make this mistake.

Instead, gradually refine your customer journey stages within your email workflows.

4. Failing To Plan In Advance

With this email marketing mistake, I’m not just talking about planning the drip campaigns but even the customer journey before setting up the email automation.

Setting up workflows on email marketing platforms becomes highly challenging when you don’t have a documented customer journey.

At what stage will you consider a subscriber coming closer to the sales cycle, or will it be too early to pitch sales? If these things are not decided, you may lose the opportunity to convert a Marketing Qualified Lead (MQL) into a Sales Qualified Lead (SQL).

Note: This mistake is not for community-serving newsletters.

As shown in the above point, you can set up a calendar for the newsletter series and create workflows for customer journey emails.

We create an entire email workflow on the Lucid app and then take it to any email automation tool. Then, based on the user interactions, we enhance the audience’s email journey with us.

Here is how we did for one of our IT clients for an ebook download:

Email Marketing workflow draft before going live to brainstorm with the team and avoid any hiccups to prevent the email marketing mistakes.Screenshot from author, July 2023

5. Planning Only Sales-focused Emails

Planning only sales-focused emails is considered a huge mistake for email marketers, especially when you’ve just started.

When a subscriber joins you, you must welcome them. Try grabbing their attention by educating them slowly and gradually, and then when they show some interest or become an MQL for you, that’s where pitching the sales would make more sense.

With the Tragofone VoIP softphone brand, we planned the newsletters with details about our conferences, features, blogs, industry-specific announcements, and more.

Focusing only sales-focused emails is one of the top email marketing mistakes and you should keep a balance between them to avoid unsubscribes the way Himani Kankaria did forT Tragofone VoIP SoftphoneScreenshot from author, July 20232

After every two to three feature update emails, we tried broaching different topics, such as:

  • Become a Tragofone partner.
  • Who uses a softphone?
  • Free Trial.
  • Build Your Own Softphone.

If you start by sharing your offers with people before winning their trust (especially for non-ecommerce), this mistake might result in lost subscribers or low engagement.

6. Skipping The “Who” While Writing Emails

The person writing the email needs to know who they are writing for and the psychology of their audience.

We all have multiple personas whom we target as our potential customers and their influencers.

In my BrightonSEO talk on Remarketing SEO, I mentioned that we have two different types of audiences: prospects or key decision-makers and the people who influence their buying decision.

Identify your target audience as Himani Kankaria recommended in her BrightonSEO talk - this can prevent email marketing mistakes that can impact the trust of your emails.Image from author, July 2023

If you don’t consider which persona you’re targeting for an email, you may provide the information they least care about, or your marketing message might go wrong.

In any of these cases, you’re losing the results you might have expected.

I would call this an email marketing blunder instead of a mistake here.

For example, an SEO tool like SE Ranking may target three audiences: agencies, in-house SEO pros (freelancers/consultants), and business owners.

Here the messaging would differ, even if the company wants to promote the same product features to all three.

  • Agencies – It would discuss efficiency, scalability, performance optimization, collaboration, white-label reporting, and more.
  • SEO – It would talk about how its automation saves time for tech, on-page, link-building, local SEO, performance tracking, customer support, and more.
  • Business Owners – It would discuss enhanced online visibility, comprehensive competitive analysis, user-friendly interface, conversion optimization, and more.

How can you write a targeted marketing message if you don’t know who you’re speaking to? Ensure you avoid this mistake by putting your audience on your calendar.

7. Not Playing Smart With Subject Lines

If your subject lines don’t work, forget about the marketing message and the result.

This graph by HubSpot showcases how the number of monthly email campaigns can impact the open rates.

A survey by HubSpot on email open rates due to email marketing mistakes.

Yes, sometimes, the number of emails does impact the open rates, but it also depends on their subject lines.

A lot of articles have been written on email subject line hacks. Many marketing professionals share their experiences with subject lines and suggest invoking scarcity, using FOMO, personalization, etc.

But you need to be extra careful while using those hacks. They can backfire and affect your email marketing return on investment (ROI).

For example, if you use the FOMO-styled subject line, but the copy doesn’t resonate with your audience, the next FOMO-based email you send might have a lesser impact.

A/B testing can be a quick solution for seeing which email subject line works for your audience.

After all, marketing is all about experimenting and then developing conclusions.

8. Having Emails “Entirely” Written By Outsiders

By outsiders, I mean freelancers or writers from agencies.

There’s no harm in hiring them. The mistake is only providing them with an email title and the number of words to be written.

When I wrote the 21 content writing mistakes, I mentioned that not giving enough information about your business to the writers can cost you big time, as they’re not the subject-matter experts for your business.

You know your business more than others.

That’s why, even if you hire email writers, you need to provide them with the following information:

  • For whom they need to write – business owners, marketers, CTOs, etc.
  • What you expect to achieve with this email – sign-ups, replies, etc.
  • What you want them to include in the email copy – features, case studies, etc?
  • What the audience should get from this email – education, lead magnet, etc.
  • The links you want in your email – should include sign-up, Calendly, etc.
  • And any other information that they would need to write the email better.

Then you can do the final editing and publish it.

After all, marketing needs a collaborative approach, including SEO.

9. Writing Ultra-Formal, Sales-Heavy Language

When I see emails not in the first or second-person language, they feel ultra-formal.

You can use “we” or “you” in your email copy even if you represent an organization or brand. It doesn’t need to be bland.

Your current audience might not care, but the new reading generation would.

Avoid ultra-formal emails as this is one of the top email marketing mistakes.Screenshot from Inc.com, July 2023

I understand that with a large audience, it is challenging to add personalization, but you can at least curate two lines for each of these topics for your audience to drive more CTRs.

Even the prime purpose of reading AppSumo emails is to find new tools, it would explain what each tool is all about; this makes it easier to drive more clicks.

Personalization in the content that boosts email CTRs.Screenshot from AppSumo, July 2023

On top of this, marketers try to make sales through email (as I mentioned above). That comes out as a weird combination; most of the time, it frustrates subscribers.

So, use creativity to make the most out of your emails.

10. Not Invoking Subscribers To Interact

I don’t mean chatting is interaction.

Interactions in email marketing mean opening emails, clicking links or buttons, replying or forwarding, unsubscribing, downloading the lead magnet, signing up for the webinar, and more.

This doesn’t happen overnight; optimizing using the data is a long process.

The following things can boost your subscriber interactions apart from the subject lines and segmentation:

  • Add personalization to tailor your emails based on subscriber data such as their name, purchase history, or preferences.
  • Include a clear and prominent CTA in your emails to make them visually appealing, use action-oriented language, and provide a compelling reason for subscribers to click.
Personalization in the email subject line to prevent email marketing mistakes that impact CTRScreenshot from author, July 2023

I personalized the subject line by Taylor Holiday from Common Thread Collective, which talks to you like your colleague or peer.

When you’re talking about learning, the BlueArray SEO team knows what CTA to put:

Prominent CTA by Blue Array SEO emails to invoke CTR that overcomes email marketing mistakesScreenshot from Blue Array Academy, July 2023
  • Incorporate interactive elements within your emails to increase engagement, such as embedded videos, quizzes, surveys, polls, or interactive images.

This below survey by Growth Hackers is a great example of using a survey to increase interactiveness. If you can’t do a survey or quiz, there are other methods to choose from.

To add interactions in the email, put a survey to prevent email marketing mistakesImage from Growth Hackers, July 2023
  • Encourage subscribers to interact by asking questions, seeking feedback, or prompting replies.

A brilliant feedback-seeking element that I found in an email by Search Engine Journal:

Add interactions in your email just like Search Engine Journal to prevent email marketing mistakes.

In short, every element of your email should work to invoke interactions; otherwise, your email would just be another email in a list of unread emails.

11. Failing To Put Curated Opt-in Offers

We all have opt-in offers for our audience.

We use the ebook we have created, the webinar we have, the conference we are sponsoring, and so much more as lead magnets to promote to our email subscribers.

But how much effort do you put into creating a lead magnet specifically based on audience interactions?

For example, those who signed up for an ebook on conducting a content audit might also need a content audit checklist to use internally across their content team.

Such curated opt-in offers can take your email subscribers closer to the conversion stage.

12. Stacking Too Many CTAs In Every Email

I recommended adding calls-to-action (CTAs) to invoke interactions, but that doesn’t mean we should go wild with them.

How many is too many?

I saw this survey by Databox, where 43% of the interviewed marketers said they use only one CTA per email, while 30% use two CTAs.

How many CTAs should your email have? A survey by Databox - Email Marketing MistakesImage from Databox, July 2023

The number of CTAs in an email depends on various factors, including the purpose of the email, the content being promoted, the length of the email, the email type, and the preferences of your target audience.

Conduct A/B testing to assess the impact of different CTA strategies on your specific audience and email goals.

Test emails with different numbers and placements of CTAs to determine what resonates best with your subscribers and drives higher interaction rates.

Not all your emails should have a bunch of CTAs, and not all should have only one CTA. Balance it out.

13. Not Having Conversational CTAs

Despite so many expert marketers explaining how to create a compelling CTA on your landing page or email, we still see those cliche CTA button texts in the email:

  • Buy Now.
  • Order Now.
  • Call Now.
  • Free Trial.
  • Request a free demo.
  • And so on.

CTAs not only invoke interactions, but it is the relationship bridge between you and your audience.

How you craft your CTA will define whether you’ve built trust via this email. Conversational CTAs help foster a sense of trust, authenticity, and rapport with your audience.

They create a conversational tone that encourages recipients to engage with your brand on a deeper level.

A study by HubSpot says personalized CTAs convert 202% better than basic CTAs.

HubSpot study for CTA types - email marketing mistakesImage from HubSpot, July 2023

So think of a personalized or eye-catchy CTA before you press that send button.

14. Sending A Typical, Cliche Welcome Email

Another mistake with email marketing beginners is when every form filled generates a standard welcome email with minor text and design modifications.

Whether it’s your drip campaign for a lead magnet or the thank you email for contacting you, you need to make sure your email builds a solid first impression and is unique enough that will someone remember you.

Welcome emails have an average open rate of 63.91%, making them a crucial part of your email marketing efforts.

So don’t underestimate the power of sending one welcome email instead of three random marketing emails.

Instead of just thanking your audience, give them a reason to open your next email by crafting a compelling welcome email.

15. Sending Too Many Emails Daily/Weekly

This reminds me of a thought leader who used to write a lot of high-valuable content on large publishing sites.

I wanted to save time opening different websites to view their content, so I subscribed to their email lists – and  I started getting one to two emails almost daily.

It frustrated me so much that not only did I unsubscribe, but I stopped reading their content.

This is my personal experience, and that’s why we have ensured that all our clients do not share more than one email weekly.

After all, we are not just one in their inbox; there are many. So we need to value their time (and space).

Again, this depends on your business type, industry, target audience, and expectations from you.

If it’s a free trial sign-up, you can send them one email every day to remind them about using your product or send them guide-like emails the way Jasper (and many other tools) does.

Example of email series for a free trial sign-up just like Jasper AI writing tool.Screenshot from author, July 2023

But you need to ensure that when someone is on a free trial, you need to send only those emails and no other promotional emails, as that will distract or frustrate them.

16. Neglecting A Layered Proofreading

One of the biggest email marketing mistakes is focusing only on strict proofreading, not layered.

Let me explain to you what is strict proofreading vs. a layered one.

Strict Proofreading

In strict proofreading for emails, the main focus is ensuring the email is free from grammatical, spelling, punctuation, and formatting inconsistencies.

You carefully review the email line by line, paying attention to each word, sentence, and paragraph. You verify that the language and mechanics are accurate and error-free.

This includes checking for proper capitalization, punctuation, and correct spelling.

Strict proofreading is essential for professional emails where accuracy and attention to detail are crucial.

Layered Proofreading

Layered proofreading for emails involves a more comprehensive review beyond just language accuracy. In addition to checking for grammar and spelling errors, you analyze the overall effectiveness and impact of the email.

You improve clarity, coherence, and tone to ensure the email achieves its intended purpose.

You consider the organization of information, logical progression of ideas, and appropriateness of language for the recipient.

Layered proofreading may also involve refining the subject line, adjusting the tone to match the recipient’s expectations, and ensuring the email’s structure and formatting are visually appealing and easy to read.

So, most email marketers have strict proofreading where they check everything – text, graphics, and links.

With layered proofreading, you can validate if it’s created as per the purpose and expectations.

17. Not Being Ready In Advance

I’m talking about the weekly or monthly promotional emails you send when you want to promote new content, announce an event, or promote product features.

When you know you send your emails either every Tuesday, Wednesday, or Friday (these are our preferred days as per our clients’ target audience), you need to schedule your email two days in advance.

Before even doing that, you should do all of these things:

  • Plan the email concept for the next week – its purpose and expectations.
  • Create the email copy.
  • Get it designed.
  • Layered proofread it.
  • Do the test mails.
  • Schedule the mail.

But most of the time, the testing is done on the day the email has to be sent. So let me tell you what will happen if you’re not ready in advance:

  • If there are any last-minute adjustments or changes, you might have to delay or postpone it. Due to this, your email didn’t reach your intended recipients at the desired time.
  • If you send out emails in a rush, you might make embarrassing mistakes, miss important details, or share broken links that negatively impact the promotion’s success.

18. Ignoring A/B Testing For Everything

Most email marketers are too busy cleaning up the database, updating it, setting up their segmentations, coming up with email context ideas, writing the email, monitoring their performances, and restrategizing to ensure every email they send performs.

Technically, the email marketing team should include the strategist, copywriter, designer, optimizer (done mainly by the strategist), and developer/QA, depending on the need.

But, most organizations have only one person who does everything – strategizing, writing, set-up, QA, and scheduling. The designer is involved but not any other team members.

Many email marketers don’t have time to develop email variants to see what works best for the audience.

Now that you have the above chart, get team members to allocate the respective tasks, and continue with setting up A/B testing for:

  • Subject lines.
  • Email length.
  • Email flow.
  • Content.
  • Personalization.
  • Media.
  • Templates.
  • Buttons or text links.
  • CTAs.

Start with one and see how it goes. Repeat until you start seeing ROI.

19. Ignoring Email Audience Behavior On The Website

The worst and most prominent of all email marketing mistakes is not understanding the audience’s behavior on the website.

Email marketers need to know whether your audience gets what they expected when requested to click.

So, for example, if the audience is interacting with infographics, next time, you can share such infographics in the email to invoke more click rates.

By paying attention to email audience behavior on the website, email marketers can personalize content, segment audiences, leverage retargeting opportunities, optimize campaigns through A/B testing, and track the customer journey.

This data-driven approach enhances the effectiveness and relevance of email marketing efforts, leading to better engagement, conversions, and overall campaign success.

Turn Email Marketing Mistakes Into Opportunities For Better Results

I’ve purposefully left the following mistakes out of this article, as we have seen that people eventually improve upon them:

  • Poor designs.
  • Mobile optimization.
  • Monitoring the performance.
  • Violating terms & conditions of email marketing platforms.

While you’re likely not making all of the mistakes I listed above, it’s helpful to be aware of what could hinder your email marketing success so you can cross-check in case any of these are affecting you and your team.

Work on them to continuously improve your email marketing efforts and enhance your results.

More resources: 


Featured Image: fizkes/Shutterstock



[ad_2]

Source link

]]>
https://cbomo.com/19-email-marketing-mistakes-impact-opens-clicks-conversions/feed/ 0
Post Malone Opens Pink, Tattooed Raising Cane’s Location https://cbomo.com/post-malone-opens-pink-tattooed-raising-canes-location/ https://cbomo.com/post-malone-opens-pink-tattooed-raising-canes-location/#respond Tue, 18 Apr 2023 03:11:49 +0000 https://cbomo.com/post-malone-opens-pink-tattooed-raising-canes-location/ [ad_1]

Rapper Post Malone is taking his talents (and an unmistakable sense of style and body art) outside of the music world into his newest foray — fast food.

The artist, whose real name is Austin Richard Post, has teamed up with chicken chain Raising Cane’s to open a one-of-a-kind restaurant near his home in Midvale, Utah — complete with a pink exterior and tattoo-inspired art etched across the building.

The restaurant is donned with mementos from Post’s touring days and career, including a 1974 Ford F250 in the parking lot featured in one of the rapper’s music videos, which will become a permanent fixture of the restaurant.

“It’s a really cool restaurant,” Post told reporters at the ribbon-cutting ceremony last week. “We got like crazy stuff. We put some armor in there, some old stinky outfits that I wore on tour and for events, and they still have the musk on them, and they’re still 100% collectors.”

The “White Iverson” singer even features ping pong games to represent his love for the game.

Credit: Raising Cane’s

Custom merchandise is for sale, of course. Menu items include the “Posty Way Combo meal” — four chicken fingers, crinkle-cut fries with two orders of the famous Cane’s sauce, two pieces of Texas toast, extra salt and pepper, and an unsweetened iced tea lemonade.

The restaurant was gutted and redesigned after the musician took over, from the bathrooms to the outdoor landscaping.

“It’s really fun to see it come to fruition,” Raising Cane’s CEO Todd Graves said, per local outlet Fox 11. “The idea was to be next level, over the top, to do something that’s never been done before.”

Credit: Raising Cane’s

The rapper lives about 20 minutes away in Salt Lake City in a five-bedroom, seven-bathroom home on seven acres. He purchased the house in 2018.

Raising Cane’s currently operates over 600 locations in the U.S., with more than 165 locations in Texas alone.



[ad_2]

Source link

]]>
https://cbomo.com/post-malone-opens-pink-tattooed-raising-canes-location/feed/ 0
Passionate trainer opens free health center for elderly and those with disabilities – Good Morning America https://cbomo.com/passionate-trainer-opens-free-health-center-for-elderly-and-those-with-disabilities-good-morning-america/ https://cbomo.com/passionate-trainer-opens-free-health-center-for-elderly-and-those-with-disabilities-good-morning-america/#respond Sat, 08 Apr 2023 03:16:12 +0000 https://cbomo.com/passionate-trainer-opens-free-health-center-for-elderly-and-those-with-disabilities-good-morning-america/ [ad_1]

Passionate trainer opens free health center for elderly and those with disabilities  Good Morning America

[ad_2]

Source link

]]>
https://cbomo.com/passionate-trainer-opens-free-health-center-for-elderly-and-those-with-disabilities-good-morning-america/feed/ 0
New England Patriots cheerleader opens fitness studio in Rhode Island – WJAR https://cbomo.com/new-england-patriots-cheerleader-opens-fitness-studio-in-rhode-island-wjar/ https://cbomo.com/new-england-patriots-cheerleader-opens-fitness-studio-in-rhode-island-wjar/#respond Sun, 02 Apr 2023 01:24:07 +0000 https://cbomo.com/new-england-patriots-cheerleader-opens-fitness-studio-in-rhode-island-wjar/ [ad_1]

New England Patriots cheerleader opens fitness studio in Rhode Island  WJAR

[ad_2]

Source link

]]>
https://cbomo.com/new-england-patriots-cheerleader-opens-fitness-studio-in-rhode-island-wjar/feed/ 0