Прикрепление файла к письму в python приводит к пустому имени файла?

Следующий snipit кода работает отлично, за исключением того факта, что результирующее имя файла вложения пустое в письме (файл открывается как "noname" в gmail). Что я делаю неправильно?

file_name = RecordingUrl.split("/")[-1]
            file_name=file_name+ ".wav"
            urlretrieve(RecordingUrl, file_name)

            # Create the container (outer) email message.
            msg = MIMEMultipart()
            msg['Subject'] = 'New feedback from %s (%a:%a)' % (
From, int(RecordingDuration) / 60, int(RecordingDuration) % 60)

            msg['From'] = "[email protected]"
            msg['To'] = '[email protected]'
            msg.preamble = msg['Subject']                
            file = open(file_name, 'rb')
            audio = MIMEAudio(file.read())
            file.close()
            msg.attach(audio)

            # Send the email via our own SMTP server.
            s = smtplib.SMTP()
            s.connect()
            s.sendmail(msg['From'], msg['To'], msg.as_string())
            s.quit()

Ответ 1

Вам нужно добавить заголовок Content-Disposition в часть audio сообщения, используя add_header:

file = open(file_name, 'rb')
audio = MIMEAudio(file.read())
file.close()
audio.add_header('Content-Disposition', 'attachment', filename=file_name)
msg.attach(audio)