I just uploaded this on AppEngine - trying to send an email with an attachment (blobinfo). This returns a blank page - no error message. When I leave out the attachment the email is sent, when I include it the email never arrives, but again: no error message.
Can I even send a BlobInfo as Attachment (=Bytestring)? If not, how can I translate it?
Thanks in advance :)
dataset = ""
for i in range(len(newer_table)):
for j in range(len(newer_table[i])):
dataset = dataset + str(newer_table[i][j]) + ','
dataset += '\n'
file_name = files.blobstore.create(mime_type='text/comma-separated-values', _blobinfo_uploaded_filename='test')
with files.open(file_name, 'a') as f:
f.write(dataset)
files.finalize(file_name)
blob_key = files.blobstore.get_blob_key(file_name)
blob_info = blobstore.BlobInfo.get(blob_key)
blob_reader = blobstore.BlobReader(blob_key)
#self.response.out.write(blob_reader.read())
user_address = "test@googlemail.com"
sender_address = "Test <test@googlemail.com>"
subject = "Test"
body = "Test"
mail.send_mail(sender_address, user_address, subject, body, attachments=[blob_info.filename, blob_reader.read()])