I host a org/site where a monthly newsletter is sent to all the members of the group (~200). Somewhat aside, I have a problem attaching a multi-meg PDF or images in the body of the email. To that end the PDF resides on the server and the email has a link. Images are also on the server with - img src=server/img.png. etc. Keeps emails small in data, large in display.
The lead in to the question: Did they get the email? Did they read it? Our Apache logs show the IP, time, etc. But not who. When the email goes out - via SQL "select name, email from membership ..." I can personalize the email, tell them if their dues are paid, etc. So solve the problem of "who" read their email, who hasn't, I add a dummy image at the bottom of the email "img src=https://server/emailread/name@email.com". Yes it shows as a broken image but in the Apache log I can grep emailread access.log and get a list of who read the newsletter or special notice. So, that's what I came up with. Now the question: Is there a better way?
Thanks
The lead in to the question: Did they get the email? Did they read it? Our Apache logs show the IP, time, etc. But not who. When the email goes out - via SQL "select name, email from membership ..." I can personalize the email, tell them if their dues are paid, etc. So solve the problem of "who" read their email, who hasn't, I add a dummy image at the bottom of the email "img src=https://server/emailread/name@email.com". Yes it shows as a broken image but in the Apache log I can grep emailread access.log and get a list of who read the newsletter or special notice. So, that's what I came up with. Now the question: Is there a better way?
Thanks