(user_mail, '' 連接(接收方),mail.as_string())序列項0:期望的字符串,元組找到
上面的代碼產生wxpected字符串,但元組發現的錯誤。我應該如何解決這個問題?任何解決方案
(user_mail, '' 連接(接收方),mail.as_string())序列項0:期望的字符串,元組找到
上面的代碼產生wxpected字符串,但元組發現的錯誤。我應該如何解決這個問題?任何解決方案
您必須在字符串中指定收件人。以下是您可以指定收件人的示例。
user_email = "[email protected]"
recipients = ["email1, email2, email3"]
我試過了,它說typeError:順序項目3:預期的字符串,發現元組 –
嘗試編輯我希望這可以工作。我確實使用了列表,但它工作正常,但我不知道爲什麼它不適用於您的情況 –
屬性錯誤:str對象沒有屬性追加 –
一些更多的代碼,將有助於我們幫助您 –
收件人= [] DB = MySQLdb.connect(主機=「 '用戶= ''',paswd = '' 'DB = ''')光標= db.cursor()cursor.execute('select email from user where email is not null')rows = cursor.fetchall()for items in rows:recipient.append(item) –
我要求的代碼可以解釋問題並幫助我們找到解決方案,您可以發送發送電子郵件的代碼,如smtplib.login和其他代碼 –