Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/maizzle/maizzle.com/llms.txt

Use this file to discover all available pages before exploring further.

Replace strings

Maizzle can batch-replace strings in your HTML email template, and you can even use regular expressions!

Usage

Use the replaceStrings option to define key-value pairs of regular expressions and strings to replace them with:
config.js
export default {
  replaceStrings: {
    'find and replace this exact string': 'with this one',
    '\\s?data-src=""': '', // remove empty data-src="" attributes
  }
}
Character classes need to be escaped when defining a regular expression for replaceStrings. As you can see above, \s becomes \\s.

API

app.js
import { replaceStrings } from '@maizzle/framework'

const html = await replaceStrings('initial text', {initial: 'updated'})