Untitled
unknown
plain_text
9 months ago
292 B
6
Indexable
def create_email_body(contact, template):
body = template
body = body.replace("{Name}", contact["Name"])
body = body.replace("{Industry}", contact["Industry"]) # Replace {Industry}
body = body.replace("{Company}", contact["Company"]) # Replace {Company}
return bodyEditor is loading...
Leave a Comment