Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试使用 Perl 提供的这些不同模块来发送电子邮件:
我无法弄清楚出了什么问题。这些模块是否需要任何预先设置才能工作?
Email::Sender是截至 2009 年最好的发送模块;它不需要预先设置。您可以在运行时配置传输(例如 SMTP)及其选项(例如主机名)。请参阅链接的概要。
我使用Net::SMTP因为它是一个标准的 Perl 模块。这意味着无论我在哪台机器上,它都始终可用。
Net::SMTP不像特定的电子邮件模块那么简单,但它仍然不需要火箭科学的高级学位。
Net::SMTP
这是我正在使用它的示例。查看第 767 到 817 行。