Hello all
I’m sending an email with frappe.sendmail(). In the absence of a reply-to parameter, the sender parameter’s value is also applied as the the default reply-to. However I want to disable reply-to. In other word the reply-to should not have any value at all, and even better not defined.
I’ve tried various options but all of them result in the sender’s email address being set as the reply-to:
reply_to = '',
reply_to = [],
reply_to = False
Is there any switch maybe which will toggle a reply-to? I want to send mail from a noreply@domain.tld and do not want (or even better prevent) reply email.
Thanks so much.