I would like to import contacts from a csv file into bbdb. I bumped into bbdb-csv-import
on melpa for that and, from the documentation, it seems that it allows for entry customization. I have only the group and the email addresses in the csv file.
my csv-file format looks like
group, email,
group1, abc@letters.org,
group2, 123@numbers.com
(defconst bbdb-csv-import-td
'(
(:group "group")
(:mail "Primary Email")
)
"td format")
(setq bbdb-csv-import-mapping-table bbdb-csv-import-td)
M-x bbdb-csv-import-file
imported all my entries but they are all with ???.
Any help please?