diff --git a/apps/builder/public/images/emails/V2dot24Update/aiBlocks.jpg b/apps/builder/public/images/emails/V2dot24Update/aiBlocks.jpg
new file mode 100644
index 000000000..bc8481028
Binary files /dev/null and b/apps/builder/public/images/emails/V2dot24Update/aiBlocks.jpg differ
diff --git a/apps/builder/public/images/emails/V2dot24Update/saveChatState.gif b/apps/builder/public/images/emails/V2dot24Update/saveChatState.gif
new file mode 100644
index 000000000..9d000f7d8
Binary files /dev/null and b/apps/builder/public/images/emails/V2dot24Update/saveChatState.gif differ
diff --git a/apps/builder/public/images/emails/V2dot24Update/turnInto.gif b/apps/builder/public/images/emails/V2dot24Update/turnInto.gif
new file mode 100644
index 000000000..804db3747
Binary files /dev/null and b/apps/builder/public/images/emails/V2dot24Update/turnInto.gif differ
diff --git a/packages/transactional/templates/marketing/V2dot24Update.tsx b/packages/transactional/templates/marketing/V2dot24Update.tsx
new file mode 100644
index 000000000..c7ef311a8
--- /dev/null
+++ b/packages/transactional/templates/marketing/V2dot24Update.tsx
@@ -0,0 +1,173 @@
+import {
+ Body,
+ Container,
+ Head,
+ Html,
+ Img,
+ Link,
+ Preview,
+ Text,
+ Hr,
+ Heading,
+ Section,
+} from '@react-email/components'
+import * as React from 'react'
+import { env } from '@typebot.io/env'
+import {
+ main,
+ container,
+ text,
+ featureSection,
+ heading,
+ image,
+ hr,
+ footer,
+ link,
+} from './styles'
+
+type Props = {
+ firstName?: string
+}
+
+const imagesBaseUrl = `${env.NEXTAUTH_URL}/images/emails/V2dot24Update`
+
+export const V2dot24Update = ({}: Props) => (
+
+
+
+
+
+ Hey,
+
+ Typebot v2.24 was just released. This update introduces powerful new
+ blocks and improved tool stability.
+
+
+ Let's dive into what's new!
+
+
+
+ 2 New AI completion blocks
+
+ Boost your chatbots with AI-powered responses using the new
+ Anthropic and OpenRouter blocks.
+
+
+ With OpenRouter, you can query literaly any AI model you want at the
+ best price
+
+
+ With Anthropic, you can generate responses with the latest
+ groundbreaking Claude AI models.
+
+
+
+
+
+
+ Persist chat state between sessions.
+
+
+ Now, if you enable the "Remember user" option, if the user comes
+ back to the typebot, it will display the previous chat state.
+
+
+ It also works magically when your bot is embedded 🔥
+
+
+
+
+
+
+ Turn Into Option for AI Generation Blocks
+
+
+ Easily switch between different AI services with the new "Turn into"
+ option on AI generation blocks. This convenient feature allows you
+ to experiment with various AI models and choose the best fit for
+ your chatbot.
+
+
+
+
+
+
+ Bug Fixes and Reliability Improvements
+
+
+ We all hate bugs, right? Well, this month I've decided to fixing
+ literaly all of the known issues and reported bugs to make Typebot
+ more reliable.
+
+
+ And from now on I've decided to always focus fixing newly reported
+ bugs. That's that kind of standard I want to set for Typebot.
+
+
+ Check out the full changelog{' '}
+
+ here
+
+ !
+
+
+
+
+
+
+ As always, your feedback is invaluable, so please don't hesitate to
+ share your thoughts.
+
+
+ Baptiste.
+
+
+
+ Typebot.io - Powering Conversations at Scale
+
+ Unsubscribe
+
+
+
+
+)
+
+V2dot24Update.PreviewProps = {
+ firstName: 'John',
+}
+
+export default V2dot24Update