I read a lot of questions and answers about this issue in StackOverflow, but none of those that I read answered my question specifically.
I do not want to have a mailing list. People mark the box if they want to receive bulk email. There are no invalid emails because accounts are activated via email. So no bounce check. However, I already use PHPMailer (so there is no problem with headers, etc.) and add each address in the "in" field of the email message. This means that everyone can view all emails (by reading the source of the email or by striking a “reply to everything” in their email client), which is undesirable for other users. The question arises:
1), should I send all letters separately or put all addresses in the "Bond" field? 2) Doesn’t this make some mail servers mark this message as “spam”, no matter how well structured it is? If so, is there a way to prevent this (in addition to adding an address to any whitelists or setting domain keys or jobs to work on Unix)?
Thanks!
All of the requirements listed here require the user to "sign up" using the form, and then confirm their email address (for example, in PHPList). However, I already ask for confirmation when people register, so it makes no sense to ask them again and again. My existing code validates the database; if the "receive-movie-mail" bit is set to 1 (they are collected using an SQL query), an email is sent to them when a new movie is added to the database. So, if you still think that this is a mailing list (which, in my opinion, seems to be, but maybe my definition does not match the existing functions of the software), I would like it to have: 1) some way of subscribing users to the list with the PHP code (EG, if the checkbox “I want to receive an email every time I upload a movie to the database” is checked, I signed them in my form processing code) and 2) a way to send people with PHP (IE - send_mail_to_list function ( $ content), which sends an email to the people I signed up when ulation form "Add Movie"). Is there any mailing list management software?
source share