Commit dfa04fb2 authored by Karl Kornel's avatar Karl Kornel
Browse files

Use smtp-unencrypted instead of smtp, to avoid needing SSL/STARTTLS

parent 988d507c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -547,7 +547,7 @@ EOF
	my $email_sender = Email::Send->new({
		mailer      => 'SMTP',
		mailer_args => [
			Host => 'smtp.stanford.edu',
			Host => 'smtp-unencrypted.stanford.edu',
		],
	});
	my $send_result = $email_sender->send($email->as_string);