I have sent a mail to 17000 users yesterday and by coincidence noticed that something weird happened to the import resulting in wrong data for all accounts (email addresses)
When I import, all is ok, so I suppose this happens during sending or when I had to restart because of an internet de-connection.
In the last_name field now appears "Sent" for thousands of addresses (presumably the ones that were restarted), so that what is in the last_name column now is in the "company" column. then a couple of columns are correct and suddenly there is an empty field, shifting up all columns to the right
so I end up with an html email where all those are called "Mr. Sent", and have wrong data, not being able to unsubscribe (as link is wrong) etc ((
I had downloaded the last (8) version and this is my query
SELECT `mail`, `login`, `sms`, `tel`, `first_name`, `last_name`, `lg`, `gender`, date_format(birthday,'%m-%d-%Y'), `member_fsg`, `cities`, `nbr_rejected`, `sms_rejected`, `id`
FROM `mails`
WHERE `mail` LIKE '%@%'
AND `member`
IN (
'g', 'b', 'p'
)
AND `cities` LIKE '%b%'
AND `nbr_rejected` <6
Unfortunately this makes the program yet another time unusable for me, next to the existing issue with the import of data and the limit of 20 columns. Luckily I used this for a small customer ... I'd have lost my major accounts if I would have sent a newsletter with that much crap data in it.
When I import, all is ok, so I suppose this happens during sending or when I had to restart because of an internet de-connection.
In the last_name field now appears "Sent" for thousands of addresses (presumably the ones that were restarted), so that what is in the last_name column now is in the "company" column. then a couple of columns are correct and suddenly there is an empty field, shifting up all columns to the right
so I end up with an html email where all those are called "Mr. Sent", and have wrong data, not being able to unsubscribe (as link is wrong) etc ((
I had downloaded the last (8) version and this is my query
SELECT `mail`, `login`, `sms`, `tel`, `first_name`, `last_name`, `lg`, `gender`, date_format(birthday,'%m-%d-%Y'), `member_fsg`, `cities`, `nbr_rejected`, `sms_rejected`, `id`
FROM `mails`
WHERE `mail` LIKE '%@%'
AND `member`
IN (
'g', 'b', 'p'
)
AND `cities` LIKE '%b%'
AND `nbr_rejected` <6
Unfortunately this makes the program yet another time unusable for me, next to the existing issue with the import of data and the limit of 20 columns. Luckily I used this for a small customer ... I'd have lost my major accounts if I would have sent a newsletter with that much crap data in it.