【发布时间】:2018-01-17 05:49:20
【问题描述】:
MIME::Lite 可以将额外的参数传递给Net::SMTP 构造函数。
版本 MIME::Lite 3.030 在其传递的 Net::SMTP 参数列表中不包括 SSL。
是否可以在不修改MIME::Lite源代码的情况下进行更改?
1 package MIME::Lite;
...
355 $VERSION = '3.030';
...
2843 my @_net_smtp_opts = qw( Hello LocalAddr LocalPort Timeout
2844 Port ExactAddresses Debug );
....
2847 sub __opts {
2848 my $args=shift;
2849 return map { exists $args->{$_} ? ( $_ => $args->{$_} ) : () } @_;
2850 }
....
2852 sub send_by_smtp {
....
2876 my %opts = __opts(\%args, @_net_smtp_opts);
2877 my $smtp = MIME::Lite::SMTP->new( $hostname, %opts )
2878 or Carp::croak "SMTP Failed to connect to mail server: $!\n";
【问题讨论】: