我有以下用于发送电子邮件的子例程,我正在尝试从变量“to”中删除用户“username1”,该变量是逗号分隔的电子邮件 ID,正在使用 to=to.strip('username1')似乎不起作用,知道如何从变量“to”中删除 username1@company.com
def email (body,subject,to=None):
msg = MIMEText("%s" % body)
msg["Content-Type"] = "text/html"
msg["From"] = "serviceaccount@company.com"
if to!=None:
to=to.strip()
to=to.strip('username1@company.com')
msg["To"] = to
print to