skip to Main Content

Error in sending VCard from S3 using Twilio – Twillio

I am facing the same issue. I hope you can guide me a bit. Generating VCard function: import object import base64 def b64_image(filename): with open(filename, 'rb') as f: b64 = base64.b64encode(f.read()) return b64.decode('utf-8') def make_vcard(fname,lname,email,phonenumber,CompanyName,website,photo): file_name='{}.vcf'.format(fname) with open(file_name , 'w')…

VIEW QUESTION
Back To Top
Search