Discussion Overview
The discussion revolves around the process of sending bulk emails from a .TXT file containing comma-separated email addresses using Linux (specifically Ubuntu 9.04). Participants explore command-line methods for sending emails without relying on a traditional mail client, including the use of scripts and mail transfer agents.
Discussion Character
- Exploratory
- Technical explanation
- Debate/contested
- Mathematical reasoning
Main Points Raised
- One participant inquires about sending bulk emails using a .TXT file with email addresses in the BCC field directly from the command line.
- Another participant questions why the user did not simply copy and paste the email addresses into their mail client, suggesting there may be complications.
- A participant mentions the possibility of using a mail client to set up user groups for easier management of email lists.
- One suggestion involves using the 'sendmail' command with a properly formatted message file that includes headers and the message body.
- A participant shares a Perl script example that utilizes the Net::SMTP module to send emails, detailing how to structure the script and handle errors.
- Another participant confirms the presence of the 'sendmail' command on their system but initially encounters a "command not found" error, later resolving it by using the full path to the executable.
- There is a mention of needing to specify options for 'sendmail', particularly the '-t' option to read headers from the message text file.
- One participant expresses uncertainty about Perl scripting but indicates a willingness to learn and explore the provided information.
Areas of Agreement / Disagreement
Participants express various methods and tools for sending bulk emails, with no consensus on a single approach. Some suggest using 'sendmail', while others propose Perl scripting, indicating a range of opinions on the best solution.
Contextual Notes
Participants note limitations regarding the need for specific command options and the requirement for proper formatting of email headers in the message file. There are also dependencies on the availability of certain software and modules on their systems.