Skip to content

Cant attach csv file with UTF-8 #189

Description

@dogrocker

Hello, I attach csv file with unicode string and send to email with postmark. When I download csv file and open with ms excel the file show wrong string. Not sure what I do wrong ?

        files = []
        csvfile = StringIO()
        writer = csv.writer(csvfile)
        writer.writerow(['some unicode string'])

        data = csvfile.getvalue()
        attachment = MIMEBase('text', 'csv')
        attachment.set_payload(data.encode('utf-8'))
        encoders.encode_base64(attachment)
        attachment.add_header('Content-Disposition', 'attachment', filename='readme.csv')
        files.append(attachment)
        
        email = postmark.emails.send_with_template(
            TemplateId=xxx,
            TemplateModel={},
            From='no-reply@mail.com',
            To=['mymail@mail.com'],
            Attachments=files
        )

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions