Prompt Details
Model
Chat - GPT-3.5 (gpt-3.5-turbo)
Token size
117 ($0.00020 / call)
Example input
sender: myemail@gmail.com
message body: 'Hello! We're happy to offer you our product at a special price. Take advantage of the limited time offer!'
Example output
import smtplib
from email.mime.text import MIMEText
# email account login information
username = 'myemail@gmail.com'
password = 'password'
# SMTP server settings
smtp_server = 'smtp.gmail.com'
smtp_port = 587
# message body
message_body = 'Hello! We\'re happy to offer you our product at a special price. Take advantage of the limited time offer!'
# list of recipients
recipients = ['address1@email.com', 'address2@email.com']
# create email message
msg = MIMEText(message_body)
msg['From'] = username
msg['To'] = ', '.join(recipients)
msg['Subject'] = 'Special Offer'
# connect to SMTP server and send message
server = smtplib.SMTP(smtp_server, smtp_port)
server.starttls()
server.login(username, password)
server.sendmail(username, recipients, msg.as_string())
server.quit()
print('Message sent successfully!')
By purchasing this prompt, you agree to our terms of service
GPT-3.5-TURBO
This prompt with ZTR structure (the most advanced) will generate a customizable bot to promote products, services or events through e-mail marketing. It can be used to send newsletters, special offers, promotions, and new product announcements.
Essential for any business!
The average price of this kind of bot is about $10/$20 per month!
I am selling this prompt for only $1.99 to promote my account on Promptbase by showing you the quality of my works.
Don't let this offer pass you by!
...more
Added over 1 month ago

