Hello,
Im tying to send translated Emails via Python3 library sib_api_v3_sdk.
Im having issue with changing Preview Text of a email template.
My code for sending Transactional emails looks like this:
send_smtp_email = sib_api_v3_sdk.SendSmtpEmail(
to=[{« email »: email_reciever}],
sender={« email »: « info@ding.jobs », « name »: « DING »},
template_id=41,
subject=mail_title,
params={
« WELCOME_TEXT1 »: mail_title
}
)
the problem is that I cant find way of changing « Preview Text » that I setupped while creaating tempalte.
Solution is not to use preview text in temaplte setup, set it to empty.
But I want this feture!