vobject

Creating a multiple phone vCard using vObject

Creating a multiple phone vCard using vObject Question: im using vObject to create a vCard. Everything works well except I can’t add multiple phone numbers. Right now i’m doing this: v.add(‘tel’) v.tel.type_param = ‘WORK’ v.tel.value = employee.office_phone v.add(‘tel’) v.tel.type_param = ‘FAX’ v.tel.value = employee.fax As it’s working as a key value, the work phone is …

Total answers: 2