\" 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'); } steps – Affiliate Marketing Programs | CBOMO.COM https://cbomo.com Your Affiliate Online Money Opportunities Fri, 21 Jun 2024 01:49:10 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 How To Start A Blog That Makes Money In 10 Simple Steps https://cbomo.com/apiclick-aspxreffexrssaidtid6674dc1327594962b5f125d25f99b567urlhttps%3a%2f%2fwww-forbes-com%2fsites%2fenochomololu%2f2023%2f10%2f15%2fhow-to-start-a-blog-that-makes-money-in-10-simple-steps%2f/ https://cbomo.com/apiclick-aspxreffexrssaidtid6674dc1327594962b5f125d25f99b567urlhttps%3a%2f%2fwww-forbes-com%2fsites%2fenochomololu%2f2023%2f10%2f15%2fhow-to-start-a-blog-that-makes-money-in-10-simple-steps%2f/#respond Fri, 21 Jun 2024 01:49:10 +0000 https://cbomo.com/apiclick-aspxreffexrssaidtid6674dc1327594962b5f125d25f99b567urlhttps%3a%2f%2fwww-forbes-com%2fsites%2fenochomololu%2f2023%2f10%2f15%2fhow-to-start-a-blog-that-makes-money-in-10-simple-steps%2f/ [ad_1]

Starting and monetizing a blog may sound intimidating, but this process is entirely achievable if you do the right things.

To start, you should find a niche, choose a blog name, and work towards growing your website. This article lists ten practical steps for creating a blog to help you make money.

How To Start A Blog And Make Money

1. Find A Niche

Before setting up a website and everything else, you should find a niche that combines your interests and profitability goals. Focusing on a specific topic can better captivate your target audience and establish your authority in that area.

2. Choose Your Blog’s Name

Once you’ve decided on the niche to focus on, the next step is to choose your blog’s name. Remember, the name of your blog is the readers’ first introduction to your site’s branding, so try to incorporate both your niche and personality in your blog’s name.

3. Build Your Website And Go Live

Now, it’s time to get your website online. Research and find a blog hosting platform that suits your budget and preferences. Then, choose a domain name closely related to your blog’s name and make your website go live.

4. Write Your First Blog Post

A blog without posts can never bring you money. So, once your website goes live, it’s time to start planning and publishing your first blog post. Research what and how other bloggers write in your niche and create an article that resonates with your target audience.

Besides writing high-quality content, follow the best SEO practices, such as optimizing relevant keywords and using subheadings as early as possible. Doing so will help improve your blog’s search engine rankings, which correlate directly with your future earnings.

5. Promote Your Blog And Gain Traffic

Although search engine optimization can help you get substantial online traffic, promoting your blog remains one of the best ways to boost your website’s visibility and attract a loyal community.

So, promote your blogs on various social media platforms, take advantage of email marketing, and, if you’re willing to allocate some funds, consider investing in paid promotion.

6. Build A Community

Build a community through your blog where your readers can share their interests and thoughts about your focused niche. Encourage your audience to engage through discussions and questions or share your articles.

Of course, as the author, don’t forget to be interactive and responsive to foster a sense of community in your blogging platform.

7. Track Your Analytics

At this point, you should start tracking your website’s analytics to know how well your website is doing. To do so, monitor your platform’s number of visitors, reads, and clicks.

You may use Google Analytics, which is free, to track these key performance indicators.

8. Start Affiliate Marketing

Once you’ve established a solid online presence, you can start affiliate marketing to earn a commission for every sale your website generates. Some of the most popular affiliate programs you can join include Amazon Associates and eBay Partner Network.

Alternatively, you can establish your affiliate partnerships by reaching out to brands directly and negotiating customized affiliate agreements.

9. Run Ads On Your Blog

Running ads on your website is the classic way to earn money through blogging. To start doing so, sign up for Ad networks like Google Adsense and follow these platforms’ onboarding steps to begin displaying ads that generate revenue on your platform.

10. Grow Your Blog

Blogging is not a set-and-forget income stream. The last and never ending step of starting a blog that makes money is consistently growing your website.

Regularly look for opportunities to improve your metrics; don’t be afraid of changing your approach or experimenting with new strategies. If necessary, seek guidance from experts in the blogging field to help your platform grow.

Best Ways To Make Money From Your Blog

Affiliate Marketing

You can be an affiliate promoting brand products or services to earn money through your blog. With each purchase made using the links you provide, you can earn a commission from the company or seller you promoted for.

Advertisements

Most bloggers generate income from their blogs by selling ad space on their websites. How much you’ll earn through advertisements depends on several factors, including your blog’s traffic, where most of your audience lives, and your ads’ pricing model.

Sell Your Products And Services

As a blogger, you can also use your website to sell your products and services to your readers. Whether offering digital or physical goods, stick within your niche to further establish your online authority.

Write Sponsored Posts

Collaborate with brands and get paid for writing sponsored posts– articles that promote certain services or products. Remember that as mandated by the Federal Trade Commission (FTC), you must disclose every sponsored content you publish.

Is It Possible To Make Money Blogging In A Few Months?

Yes, it’s possible to start earning with your blog within a few months. However, know that achieving this feat is not so easy.

It takes most bloggers at least 6 to 12 months of consistent content creation to earn reliable income through their blogs. So, if you’re starting a blog from scratch, you should know that success may not come immediately.

[ad_2]

Source link

]]>
https://cbomo.com/apiclick-aspxreffexrssaidtid6674dc1327594962b5f125d25f99b567urlhttps%3a%2f%2fwww-forbes-com%2fsites%2fenochomololu%2f2023%2f10%2f15%2fhow-to-start-a-blog-that-makes-money-in-10-simple-steps%2f/feed/ 0
Create and Automate Multiple RSS Feed Emails with FeedOtter in 3 Steps https://cbomo.com/create-and-automate-multiple-rss-feed-emails-with-feedotter-in-3-steps/ https://cbomo.com/create-and-automate-multiple-rss-feed-emails-with-feedotter-in-3-steps/#respond Tue, 11 Jun 2024 03:45:12 +0000 https://cbomo.com/create-and-automate-multiple-rss-feed-emails-with-feedotter-in-3-steps/ [ad_1]

RSS feeds play a crucial role in automating content distribution. By connecting an RSS feed to an email marketing platform, marketers can automatically generate and send email newsletters that are relevant and up-to-date.

Some types of emails—like podcast notifications—might only need a single RSS feed. Simple and straightforward. More involved email newsletters often work with multiple content streams, from blogs to YouTube to podcasts. With every additional content stream you add, the value of automating the curation and sending process grows.

Let’s dive a little deeper into how to leverage multiple RSS feeds within an email digest or newsletter—and what benefits this approach can bring.

3 Benefits of Multiple RSS Feed Emails

Let’s take a look at the top 3 benefits of connecting multiple RSS feeds to your email newsletter curation and sending process:

Benefit 1: A simplified process

RSS feeds can deliver the latest content directly to your ESP, saving you hours of time curating and manually adding each piece individually. With hours saved on every email, you’re able to reallocate time and energy to more creative ventures.

Benefit 2: On-time distribution

When you start automating your newsletter creation process, emails can send on a schedule that runs independent of your team’s bandwidth, ensuring prompt updates for your audience without compromising quality. Whether you’re working with breaking news headlines or are curating industry topics, getting your email out efficiently can help give you an edge as a content authority.

Benefit 3: A value-rich email

Inbox fatigue is an ever-increasing issue when it comes to engaging with your email subscribers. Creating a rich and varied email through multiple RSS feeds and content sources helps to increase the perceived value of your content. Ultimately, this can translate into higher open rates, clicks, and conversions.

Despite these advantages, multiple RSS feed emails remain under-used within content teams. Often, marketers are unaware of the capabilities and potential impact of this approach or are hesitant to adopt new strategies amidst their busy schedules.

Here’s how to get it done in just a few minutes:

How to set up a multi-RSS feed newsletter (the easy way)

As we’ve noted elsewhere, many mainstream ESPs lack the ability to pull in RSS feeds on their own. Fortunately, FeedOtter natively integrates with some of the most popular email service providers.

The advanced Multiple RSS Feed Options found within FeedOtter allows you to connect multiple content source feeds into one email newsletter. That way, you can present multiple RSS feeds from different categories in one email instead of sending out a campaign for each feed—and as the content cheerleaders we are, that’s exciting!

Note: FeedOtter currently integrates with MailChimp, Marketo, Pardot, Eloqua, Salesforce Marketing Cloud, and Hubspot.

To be a little more specific: one feed may be regularly updated blog entries, and the other might include more static presentations like job postings or case studies. The handy thing with the advanced FeedOtter options is that you have control over every aspect of your feeds, including the ability to click on/click off any of the feeds involved in your single campaign.

Here’s how to get set up and running with just a few clicks:

Step 1: Gather your RSS feed URL

The first thing you need to do is find the appropriate RSS feeds that involve different categories of marketing content.

For simplicity sake, we are going to use Hubspot for our example:

https://blog.hubspot.com/marketing/rss.xml
https://blog.hubspot.com/sales/rss.xml
https://blog.hubspot.com/service/rss.xml

Step 2: Set up your multiple RSS feed email in FeedOtter

Head over to your FeedOtter account. Under the Automated tab, you can create a new automated email or edit one that’s already created. Once in the email editor, go to Feeds and insert each feed and then click the Next button, which should bring you to the template library.

A screenshot of the FeedOtter interface showing how to add multiple RSS feeds to an email

Step 3: Choose a “Multifeed” email template

Click on the blue Template Library button to view the predesigned email templates available. (Note that you can also opt for a custom template design by reaching out to FeedOtter support directly.)

Here, you’ll want to select the Multifeed category. After you’ve completed that step, the rest of the template customization falls to your personal preferences.

A screenshot of the FeedOtter email template library settings

For Advanced Users:

If you are building your own custom email template using the FeedOtter RSS email template guide you can easily find multiple post loops for use in your email below the feed entry boxes.  Use these “for loops” to display content from the appropriate feeds in your email.

Step 4: Set your automation parameters

Under the Schedule tab, you can decide how frequently this email sends out, as well as what will trigger the send (so you don’t have to worry about sending multiple emails with the same content, if there’s a lull between new content pieces.)

The way that FeedOtter’s automation works is that it looks at all of your feeds by default and tries to determine whether or not there is new content—if there is, it will send. By checking which feed should trigger that send, you can now exercise more control over your campaigns.  

A screenshot of the FeedOtter settings for scheduling an automated email

Key Takeaways

In today’s fast-paced digital landscape, marketers face the constant challenge of delivering relevant and engaging content to their audience. This task can be particularly daunting when working with multiple content streams and a frequent email newsletter cadence. The more content you send out, the longer it takes to manually curate and build your newsletters.

At some point, scaling your email strategy becomes entirely dependent on the size of your content team…or the automations you have in place.

Which is why RSS feeds are an essential tool for content marketing curation—and are easier than ever to utilize with the power of tools like FeedOtter, which plug directly into your ESP, allowing you to automate multiple RSS feeds and plug them directly into your email campaigns.

Additional Resources:

[ad_2]

Source link

]]>
https://cbomo.com/create-and-automate-multiple-rss-feed-emails-with-feedotter-in-3-steps/feed/ 0
How to Email a Podcast: Quick & Easy Steps | FeedOtter https://cbomo.com/how-to-email-a-podcast-quick-easy-steps-feedotter/ https://cbomo.com/how-to-email-a-podcast-quick-easy-steps-feedotter/#respond Mon, 10 Jun 2024 21:26:25 +0000 https://cbomo.com/how-to-email-a-podcast-quick-easy-steps-feedotter/ [ad_1]

Podcasting is a great, creative way to share content with your clients. But what happens when you create an awesome podcast episode, and no one knows it exists?

That’s where email marketing comes in.

Even though podcast platforms notify existing subscribers whenever new episodes go live, the notifications are easy to overlook, and do very little when it comes to building up your subscriber base.

Fortunately, there are other more effective promotional channels available, such as email. In this article, we’ll show you how to email a podcast, as well as the reasons why email can be such a great way to bring more listeners to your podcast, and ultimately, more traffic to your website.

Why Email Is a Key Channel for Podcast Promotion

Email marketing is a huge force in the marketing world and important for any company to utilize for sending content. In fact, according to the 2023 Square Future of Commerce report, 86% of consumers stated that they want to hear from businesses that they frequent, and 60% listed email as their preferred method. This trend is likely to continue for the foreseeable future, since 73 percent of millennials prefer email communication from businesses over any other type of communication.

73 percent of millennials prefer email communication from businesses over any other type of communication

Email Strategies to Promote Your Podcast

There are a few key ways that you can leverage emails to promote and build a subscriber base for your podcast…and turn these listeners into clients for your business.

1. Podcast Episode Notification Emails

If you already have a list of email subscribers, you can set up an automated email campaign to run every time a new podcast episode goes live. These emails can be as simple as an episode title, a brief description or show notes summary, and then a link out to your website or the podcast platform of your choice.

Tip: If you use a tool like FeedOtter, this type of email can be fully automated, so you don’t have to take extra time to build and manually send out notification emails every time a new episode is released. Keep reading for a step-by-step to learn how to set up an automated email like this.

2. Behind-the-scenes footage

If you’re looking for ways to keep listeners engaged on a deeper level, you can offer exclusive behind-the-scenes footage for email subscribers, and use this offer as a lead magnet to build up your list of email subscribers and new listeners.

3. Promotional offers

When you’re trying to monetize a podcast and maximize engagement with your subscribers, it’s important to make sure that you’re constantly directing them back to your owned channels.

How do you accomplish this in a way that doesn’t come off as smarmy?

One example: if you have a promotional offer or discount code that you share in an episode, you can remind listeners to subscribe to your podcast newsletters, so they can receive the discount code directly in their inbox—no frantic note scribbling required.

How to Automate Your Podcast Email Campaigns

One of the most challenging aspects of running a successful podcast is that every episode requires a large amount of effort to record, produce, and market to the right audience.

Luckily, FeedOtter has the perfect solution for streamlining the process of automated emails for podcast episodes.

We also provide various podcast guest email templates to help you invite busy experts, fellow podcasters, and industry leaders as guests on your podcast. Here at FeedOtter, we use your podcast hosting sites RSS feed and create beautiful automated emails sent through your existing email provider.

Let me take you through creating a podcast email in FeedOtter and emailing your podcast episodes to your listeners. In today’s guide, I’ll use Zilliant, a b2b company that currently uses Marketo as their email service provider. Zilliant has a great podcast hosted on Libsyn, with a great-looking subscribe form to create an emailing list.

Zilliant podcast page

Step-By-Step: How to Email a Podcast With FeedOtter

Step 1: Get the RSS feed from your podcast’s hosting site

FeedOtter integrates well with all the major podcasting hosting sites including Libsyn, Anchor, Apple iTunes, Google Podcasts, and more, making it easier to collaborate with other podcasts. You will use the hosting sites RSS feed to pull your podcast episode into your FeedOtter email.

In our Zilliant example, the RSS feed comes from their podcast hosting site, Libsyn.

Libsyn podcast homepage

2. Set Up Your Email in FeedOtter

In your FeedOtter account, you’ll create want to click on New Automated Email at the top of your screen. Give your email campaign a name and choose the email service provider that you’d like to integrate FeedOtter with.

new automated email

Next, you’ll set up a sending schedule for emailing your podcast. FeedOtter has plenty of options for scheduling your email sends, but we recommend setting up the schedule for shortly after you usually launch a new podcast episode.

For example, if you usually publish new podcast episodes on Wednesday mornings, you can set up the email to send on Wednesdays at 10 a.m. (If you happen to miss a week for your podcast, FeedOtter will automatically detect that there’s no new content, and won’t send an email that week.)

Then, add your RSS feed for the podcast site.

Add RSS feed in FeedOtter settings

At this point, FeedOtter automatically pulls from your RSS feed and puts your latest podcast episode into a beautiful FeedOtter template.

3. Customize the email look and feel

FeedOtter has its own set of podcast email templates, or you can add your own custom template to your account. You can also customize the template by clicking on the Template tab, and change the colors and add a header or logo image.

The next step is to add your Subject To/From information. Here, you can also add the title of your latest podcast episode to the subject line, or mention an upcoming episode to generate interest.

Finally, connect your ESP through the Integration tab and click Activate Campaign in the top-right corner. You’re all set to start emailing your podcast directly to your listeners.

Emailing your podcast set up complete

Happy Emailing!

FeedOtter is so excited to work with you and start emailing your podcast episodes through your ESP. You can start a free trial or schedule a demo with us and we’d be happy to get you started automating the creation of your emails.

[ad_2]

Source link

]]>
https://cbomo.com/how-to-email-a-podcast-quick-easy-steps-feedotter/feed/ 0
Easy steps for using recipient time zones in Marketo emails https://cbomo.com/easy-steps-for-using-recipient-time-zones-in-marketo-emails-2/ https://cbomo.com/easy-steps-for-using-recipient-time-zones-in-marketo-emails-2/#respond Thu, 08 Feb 2024 13:28:44 +0000 https://cbomo.com/easy-steps-for-using-recipient-time-zones-in-marketo-emails-2/ [ad_1]

Ever wondered what the Recipient Time Zone option below your Marketo scheduler was for? Anytime you’re sending marketing emails to your recipients, a big question can be the best time to send this email you’ve carefully curated. You can always find blog posts and research on the optimal time to send your emails for the best open and engagement rates possible. But what happens when your recipients are from all different areas, living in different time zones? Lucky for Marketo users, sending in recipient time zone is a given option so you can still choose the most optimal time to send your marketing emails, and Marketo will send the email at that exact time for each recipient.

How recipient time zones work in Marketo

Marketo calculates the recipient time zone by looking at their city, state, country, or zip code fields. If not filled in, Marketo will use inferred city/state/country/zip code fields. While you can’t directly update a contact’s time zone, updating any of the above location fields will allow Marketo to better determine the time zone to use for sending your emails.

Ultimately, if Marketo cannot determine your recipient’s time zone they will default to sending based on your subscription’s time zone. No need to worry too much though, as Marketo has plenty of resources and checks before defaulting to your subscription’s time zone.

How to set up recipient time zone sending

The option to use recipient time zones will be available when you schedule your email send. Just create and schedule your email, and then check the box directly below the scheduler for Recipient Time Zone.

Use Recipient Time Zone feature in Marketo email

Now with scheduling your Marketo email, there are two scenarios that can occur and will affect how/when the email is sent to each subscriber.

Scenario 1: Scheduled within 25 hours

If your email is scheduled to go out in less than 25 hours from the current time, there may be recipients on your smart list that have already passed the scheduled time in their time zone. Not a problem, as Marketo gives you a couple options for when these recipients should receive your email.

Deliver the following day in recipient’s time zone: If the scheduled time has already passed for the user, you can opt to wait and send the email to that recipient the following day at the time scheduled.

Deliver using program’s default set time: The recipient will receive the email at the time you’ve scheduled in your time zone, meaning the email will be sent to this recipient at the time you’ve scheduled in your subscription’s time zone, no matter what time it will be for the recipient.

  1. After selecting Recipient Time Zone, click the Gear icon that appears to the right.
  2. Select one of the following options(explained above) and click Save.
  3. Approve the program and your email will start to run.

Select one of the options for recipient time zones in Marketo email

Scenario 2: Scheduled more than 25 hours out

If your email is scheduled more than 25 hours in advance, then you’re all set! Marketo will be able to send to each recipient at your scheduled time in their time zone with no additional steps.

NOTE: Marketo will only show the Gear icon if your email is scheduled for less than 25 hours from your current time, so need to worry or do extra math when scheduling your emails.

How to use with FeedOtter emails

Automating your emails with FeedOtter but still want to send your emails using recipient time zone? Not a problem. Once you’ve created your automated newsletter, follow the steps below:

  1. Go to your Marketo account > Marketing Activities.
  2. Find your FeedOtter program ### – FeedOtter Setup email program.
  3. Check the Recipient Time Zone box on your setup program. This setting will carry over for all future emails.

Use recipient time zone in FeedOtter emails

Since FeedOtter emails are scheduled and sent via Marketo at the time you schedule in FeedOtter, this will cause the email to be sending in Scenario 1. In this case, Marketo defaults to the first option of delivering the following day in the recipient’s time zone.

Now you’re all set! No more worrying about your broad recipient list, your emails will be sent at the right time for your recipient.

[ad_2]

Source link

]]>
https://cbomo.com/easy-steps-for-using-recipient-time-zones-in-marketo-emails-2/feed/ 0
6 Steps For Using ChatGPT In Your Next Email Marketing Campaign https://cbomo.com/6-steps-for-using-chatgpt-in-your-next-email-marketing-campaign/ https://cbomo.com/6-steps-for-using-chatgpt-in-your-next-email-marketing-campaign/#respond Thu, 10 Aug 2023 14:15:58 +0000 https://cbomo.com/6-steps-for-using-chatgpt-in-your-next-email-marketing-campaign/ [ad_1]

ChatGPT may be stuck in 2021 when its developers last fed it training data, but it’s still a tireless research and writing assistant.

I use ChatGPT extensively in my work, peppering it with endless questions and asking it to dive deeper and deeper as I explore and create my content.

I’m also constantly discovering new ways to use the tool, making the $20 monthly investment for a paid subscription a no-brainer.

I recently spoke with one of my clients about how she’s using ChatGPT, and she said she planned to use it for email marketing.

Intrigued, I put the AI to the test, landing on six steps you can take with ChatGPT to get great results from your next email marketing campaign.

Step 1. Feed a campaign brief to ChatGPT

Just as you would a human assistant, give ChatGPT all the details it needs to strategize and create the email content, including:

  • An overview of your company or brand
  • The purpose of the campaign
  • Campaign objectives
  • Product, service, or program details
  • Testimonials
  • Audience details
  • Campaign start and end dates
  • Brand voice, tone, and style guidelines
  • How you’d like readers to feel

For my test, I told ChatGPT that I’m the CEO of a (fictional) coaching company called SaaS and Soul. I said I’m launching a two-week email campaign to announce and fill the next cohort of the SaaS and Soul Executive Leadership Program. I mentioned that I want the campaign’s first week to focus on informing and educating in week one and selling in week two.

Because this is a test and a fictional company, I searched for executive leadership programs online, chose a random program, and fed details about it into ChatGPT. I also input the content of one of my blog posts so the tool could write like me.

I asked to keep the tone personal yet professional, avoid jargon, use exclamation marks sparingly, and use bullet points when presenting more than three items.

Now that ChatGPT was loaded with the preliminaries, I went to work on the campaign.

Step 2. Ask ChatGPT to outline the campaign for you

While it’s true that you could ask the AI to write all the emails with a single request, I recommend working through the campaign step by step to avoid murky results.

Start with the outline. You can refine your approach from there.

Although I didn’t specify what I was looking for, I found it interesting that the tool provided subject lines plus details about the email content.

Here’s the result for the first week’s worth of emails.

To save space, I asked ChatGPT to rework the proposed outline, showing only the subject lines for each day.

Step 3. Ask ChatGPT to write the emails—one at a time

Next, I asked ChatGPT to concisely write the first day’s email in the first person so I could see how it would approach the project.

The first version should have introduced the leadership program, so I had to ask for a rewrite.

Asking for a rewrite means telling ChatGPT what it got wrong or noting what you’d like changed and asking it to try again. Asking for rewrites is good—it’s a way to nudge ChatGPT closer and closer to the output you want.

The second version, which follows, is much closer to—and maybe even better than—what I envisioned.

When you’re satisfied with the first email, move on to the second and continue through the last. Then, optimize the subject lines.

Step 4. Ask ChatGPT to provide alternate subject lines for A/B testing

Your subject lines are the most crucial element of your campaign because your email will go unread or be deleted if you don’t capture attention in the inbox. That’s why it’s important to A/B test them.

I fed the first set of subject lines back into ChatGPT and asked for another set for A/B testing.

Like the first set, this second set of subject lines captures attention while hinting at the content, enticing recipients to open the emails. You’re now prepped for A/B testing.

Step 5. Ask ChatGPT to recommend actions you can take to increase interaction and provide insights

ChatGPT does more than write emails and subject lines. It can also offer optimization techniques—if you ask.

I asked the tool to recommend actions that would increase interaction and provide insights into the campaign.

The first option, “embed interactive elements” sounded interesting, so I asked ChatGPT to elaborate by recommending other elements besides polls that would work for our campaign.

Those ideas provide plenty of opportunities to dive deep into interactive elements if they interest you.

Step 6. Ask ChatGPT to recommend autoresponder sequences based on behaviors

For the final element of this test, I asked ChatGPT to suggest automated follow-up emails based on behaviors—like clicks and downloads—so I could guide readers toward the next step, gently nudging them toward applying for the SaaS and Soul coaching program.

That’s just the beginning of how ChatGPT can help with your email marketing campaign

I also could have asked ChatGPT to complete the following tasks:

  • Provide alternate versions of the email body copy for A/B testing.
  • Offer guidance on integrating personalized elements, such as industry-specific content or addressing individual pain points based on segmentation.
  • Craft compelling CTAs for different segments or stages of the buyer’s journey.
  • Advise on the layout, visuals, and typography that will resonate with my brand and engage my audience.
  • Design a survey or feedback form so I can gather insights from recipients about the email content or their perceptions of the coaching program.
  • Offer insights on interpreting metrics like open and click-through rates and advise how to adjust the campaign accordingly.
  • Advise on post-campaign follow-up strategies, such as nurturing those who showed interest but didn’t enroll.

Bottom line? ChatGPT is a powerful assistant that can help you create winning campaigns in significantly less time.

You have to guide the AI to get the desired results, just as you’d have to guide a virtual assistant or copywriter. But, overall, the time and grunt work it saves you is priceless.

[ad_2]

Source link

]]>
https://cbomo.com/6-steps-for-using-chatgpt-in-your-next-email-marketing-campaign/feed/ 0
Out-gaming the fitness trackers: How I hit 10K steps a day while constantly playing on a handheld PC – PC Gamer https://cbomo.com/out-gaming-the-fitness-trackers-how-i-hit-10k-steps-a-day-while-constantly-playing-on-a-handheld-pc-pc-gamer/ https://cbomo.com/out-gaming-the-fitness-trackers-how-i-hit-10k-steps-a-day-while-constantly-playing-on-a-handheld-pc-pc-gamer/#respond Thu, 27 Jul 2023 17:24:18 +0000 https://cbomo.com/out-gaming-the-fitness-trackers-how-i-hit-10k-steps-a-day-while-constantly-playing-on-a-handheld-pc-pc-gamer/ [ad_1]

Out-gaming the fitness trackers: How I hit 10K steps a day while constantly playing on a handheld PC  PC Gamer

[ad_2]

Source link

]]>
https://cbomo.com/out-gaming-the-fitness-trackers-how-i-hit-10k-steps-a-day-while-constantly-playing-on-a-handheld-pc-pc-gamer/feed/ 0
You Can Get Paid Ten Thousand Dollars To Walk 10,000 Steps in a Day – msnNOW https://cbomo.com/you-can-get-paid-ten-thousand-dollars-to-walk-10000-steps-in-a-day-msnnow/ https://cbomo.com/you-can-get-paid-ten-thousand-dollars-to-walk-10000-steps-in-a-day-msnnow/#respond Wed, 21 Jun 2023 14:02:52 +0000 https://cbomo.com/you-can-get-paid-ten-thousand-dollars-to-walk-10000-steps-in-a-day-msnnow/ [ad_1]

You Can Get Paid Ten Thousand Dollars To Walk 10,000 Steps in a Day  msnNOW

[ad_2]

Source link

]]>
https://cbomo.com/you-can-get-paid-ten-thousand-dollars-to-walk-10000-steps-in-a-day-msnnow/feed/ 0
11 Incredible Benefits of Walking 10,000 Steps Every Day (Body and Mind) – BOXROX https://cbomo.com/11-incredible-benefits-of-walking-10000-steps-every-day-body-and-mind-boxrox/ https://cbomo.com/11-incredible-benefits-of-walking-10000-steps-every-day-body-and-mind-boxrox/#respond Wed, 31 May 2023 14:58:49 +0000 https://cbomo.com/11-incredible-benefits-of-walking-10000-steps-every-day-body-and-mind-boxrox/ [ad_1]

  1. 11 Incredible Benefits of Walking 10,000 Steps Every Day (Body and Mind)  BOXROX
  2. 30-Day Beginner Walking Workout Plan to Make It a Daily Habit  TODAY
  3. Consumer Reports: Track your 10,000 steps to health  WLOS
  4. Walking 10,000 Steps Every Day – Is it Even a Good Idea?  BOXROX
  5. View Full Coverage on Google News

[ad_2]

Source link

]]>
https://cbomo.com/11-incredible-benefits-of-walking-10000-steps-every-day-body-and-mind-boxrox/feed/ 0
How To Start A Small Business: 10 Key Steps For Beginners https://cbomo.com/how-to-start-a-small-business-10-key-steps-for-beginners/ https://cbomo.com/how-to-start-a-small-business-10-key-steps-for-beginners/#respond Fri, 19 May 2023 21:53:30 +0000 https://cbomo.com/how-to-start-a-small-business-10-key-steps-for-beginners/ [ad_1]

Starting a business may sound complicated, but if you follow a systematic plan with actionable and practical steps, you can be successful, even as a beginner.

Turning your small business ideas into reality takes time, extensive research, detailed planning, and constant improvement. This article lists an effective 10-step guideline for starting one from scratch.

How To Start A Small Business At Home Or Online

1. Come Up With A Business Idea

First, develop one or several small business ideas you want to pursue. If you haven’t settled on an idea yet, you can research to explore various options or choose one that aligns with your passion or interests.

At this point, don’t focus exclusively on the practicality of your idea, and allow yourself to be creative. The question of whether your idea has the potential to be a successful business will be answered in the next step.

2. Conduct Market Research

There are various methods to conduct market research, including surveys, interviews, and online research. Regardless of your chosen strategy, it’s important to be as thorough as possible.

Know the current trends in your prospect niche, analyze your potential business competitors, and assess whether there’s enough demand for your products or services. Once the data you’ve gathered indicates a market space for your business idea, proceed to the next phase.

3. Write A Business Plan

Whether you want to self-finance or seek potential investors, you must create a comprehensive business plan. This document serves as a detailed guideline for your business, covering aspects such as your products and services, marketing strategies, financial plans, and more.

With a detailed business plan, you’ll be prepared for difficulties or problems you may encounter when starting your project. Moreover, you will have a clearer understanding of the essence and purpose of your business idea.

4. Figure Out Your Finances

Your business plan should have already determined the required financing. That said, it’s time to figure out how you’ll secure the necessary funds for your business.

There are three major ways to obtain funding for your business: self-funding, seeking investors, or acquiring loans. So, decide which ones are most suitable for your business.

Regardless of how your business is funded, set up a separate bank account to avoid mixing up your personal money with your business capital.

5. Determine Your Business Structure

Your business structure impacts various aspects of your enterprise. These include your day-to-day operations, how much tax you pay, and the risks to your personal assets.

Select the business structure best suited for the type and scale of your enterprise. You can choose from Limited Liability Company (LLC), Limited Liability Partnership (LLP), Corporation, and Sole Proprietorship.

6. Register Your Business

The registration process for your business varies depending on which structure you choose and the state in which you want to operate.

If you decide to establish your business as a sole proprietorship, there’s no need to register it formally. Your business profits will be considered as your personal income, so you can start immediately without filing separate paperwork. However, if you wish to operate under a brand name instead of your own, you may need to register a Doing Business As (DBA) name.

Suppose you establish your business as an LLC, LLP, or corporation. In that case, you must register it as a separate legal entity, with taxes and income separate from your own.

To do so, visit your state’s business agency, and complete the necessary registration steps. These typically involve paying a filing fee, choosing a registered agent to manage your business’ legal documents, and obtaining your business’s tax identification number and bank accounts.

7. Select Your Vendors

Decide whether your business requires products and services from vendors that will help you streamline your operations. Some common business functions you may want to outsource to service-providing vendors are finance management, customer service support, and shipping and logistics.

Given that the data you’ll share with vendors may be sensitive, it’s important to engage exclusively with trusted entities in your industry.

8. Set Up An Online Presence

In this tech-centered era, establishing an online presence for your business is non-negotiable. This is one of the easiest ways to promote your business to customers and showcase your brand to potential future investors.

The most common methods to establish an online presence for your business are creating a social media page and developing a customized website. As mentioned before, you can outsource this process to vendors if you’re not too experienced in this field.

9. Market And Advertise Your Business

It’s time to be proactive about showing your products and services to your target audience. You can do this through various offline and online marketing and advertising strategies.

To promote your brand offline, you can sponsor local events, hand out banners and posters, or offer free branded merchandise to the public. Online marketing also offers various options, including paid advertisements, establishing affiliate programs, and engaging in organic social media marketing, where you post regular content and build a community around your brand.

10. Grow Your Business

Launching a business marks the initial phase of your entrepreneurial journey. Be prepared to improve and change how your business operates over time, as this is almost always inevitable.

Join communities, collaborate with other brands in your niche or industry, and accept constructive criticisms from customers and experienced entrepreneurs. Your business doesn’t have to be perfect to succeed, but it should always be adapting and improving.

Other Key Tips For Starting A Small Business

Know When To Ask For Help

Even if you plan to establish a sole-proprietorship business, don’t pressure yourself to do everything independently. Know your strengths and weaknesses in starting a business and ask for help when needed on aspects you’re unsure of or inexperienced in doing.

You can ask family, friends, and colleagues for general advice and seek out professionals who can help propel your business to the next level.

Embrace Not Knowing Everything From The Get-Go

While I previously mentioned the importance of crafting a detailed business plan, it may not always be necessary, particularly for small-scale businesses in their initial stages.

Sometimes, an informal plan consisting of just a page or two will be more than enough to provide insight into the profitability of your business idea. From here, you can always expand the business plan as you start operating your company and get more accurate, real-time data.

[ad_2]

Source link

]]>
https://cbomo.com/how-to-start-a-small-business-10-key-steps-for-beginners/feed/ 0
After age 60, 10,000 steps might no longer be the right fitness goal – The Washington Post https://cbomo.com/after-age-60-10000-steps-might-no-longer-be-the-right-fitness-goal-the-washington-post/ https://cbomo.com/after-age-60-10000-steps-might-no-longer-be-the-right-fitness-goal-the-washington-post/#respond Mon, 10 Apr 2023 20:56:57 +0000 https://cbomo.com/after-age-60-10000-steps-might-no-longer-be-the-right-fitness-goal-the-washington-post/ [ad_1]

After age 60, 10,000 steps might no longer be the right fitness goal  The Washington Post

[ad_2]

Source link

]]>
https://cbomo.com/after-age-60-10000-steps-might-no-longer-be-the-right-fitness-goal-the-washington-post/feed/ 0