Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
51
Task/Send-email/Raku/send-email.raku
Normal file
51
Task/Send-email/Raku/send-email.raku
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
use Email::Simple;
|
||||
|
||||
my $to = 'mail@example.com';
|
||||
my $from = 'me@example.com';
|
||||
my $subject = 'test';
|
||||
my $body = 'This is a test.';
|
||||
|
||||
my $email = Email::Simple.create(
|
||||
:header[['To', $to], ['From', $from], ['Subject', $subject]],
|
||||
:body($body)
|
||||
);
|
||||
|
||||
say ~$email;
|
||||
|
||||
# Note that the following will fail without an actual smtp server that
|
||||
# will accept anonymous emails on port 25 (Not very common anymore).
|
||||
# Most public email servers now require authentication and encryption.
|
||||
|
||||
my $smtp-server = 'smtp.example.com';
|
||||
my $smtp-port = 25;
|
||||
|
||||
await IO::Socket::Async.connect($smtp-server, $smtp-port).then(
|
||||
-> $smtp {
|
||||
if $smtp.status {
|
||||
given $smtp.result {
|
||||
react {
|
||||
whenever .Supply() -> $response {
|
||||
if $response ~~ /^220/ {
|
||||
.print( join "\r\n",
|
||||
"EHLO $smtp-server",
|
||||
"MAIL FROM:<{$email.from}>",
|
||||
"RCPT TO:<{$email.to}>",
|
||||
"DATA", $email.body,
|
||||
'.', ''
|
||||
)
|
||||
}
|
||||
elsif $response ~~ /^250/ {
|
||||
.print("QUIT\r\n");
|
||||
done
|
||||
}
|
||||
else {
|
||||
say "Send email failed with: $response";
|
||||
done
|
||||
}
|
||||
}
|
||||
.close
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue