-
Notifications
You must be signed in to change notification settings - Fork 22
/
Stuffer.pm
806 lines (599 loc) · 19.6 KB
/
Stuffer.pm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
use v5.12.0;
use warnings;
package Email::Stuffer;
# ABSTRACT: A more casual approach to creating and sending Email:: emails
use Scalar::Util qw(blessed);
=head1 SYNOPSIS
# Prepare the message
my $body = <<'AMBUSH_READY';
Dear Santa
I have killed Bun Bun.
Yes, I know what you are thinking... but it was actually a total accident.
I was in a crowded line at a BayWatch signing, and I tripped, and stood on
his head.
I know. Oops! :/
So anyways, I am willing to sell you the body for $1 million dollars.
Be near the pinhole to the Dimension of Pain at midnight.
Alias
AMBUSH_READY
# Create and send the email in one shot
Email::Stuffer->from ('[email protected]' )
->to ('[email protected]' )
->bcc ('[email protected]' )
->text_body($body )
->attach_file('dead_bunbun_faked.gif' )
->send;
=head1 DESCRIPTION
B<The basics should all work, but this module is still subject to
name and/or API changes>
Email::Stuffer, as its name suggests, is a fairly casual module used
to stuff things into an email and send them. It is a high-level module
designed for ease of use when doing a very specific common task, but
implemented on top of the light and tolerable Email:: modules.
Email::Stuffer is typically used to build emails and send them in a single
statement, as seen in the synopsis. And it is certain only for use when
creating and sending emails. As such, it contains no email parsing
capability, and little to no modification support.
To re-iterate, this is very much a module for those "slap it together and
fire it off" situations, but that still has enough grunt behind the scenes
to do things properly.
=head2 Default Transport
Although it cannot be relied upon to work, the default behaviour is to
use C<sendmail> to send mail, if you don't provide the mail send channel
with either the C<transport> method, or as an argument to C<send>.
(Actually, the choice of default is delegated to
L<Email::Sender::Simple>, which makes its own choices. But usually, it
uses C<sendmail>.)
=head2 Why use this?
Why not just use L<Email::Simple> or L<Email::MIME>? After all, this just adds
another layer of stuff around those. Wouldn't using them directly be better?
Certainly, if you know EXACTLY what you are doing. The docs are clear enough,
but you really do need to have an understanding of the structure of MIME
emails. This structure is going to be different depending on whether you have
text body, HTML, both, with or without an attachment etc.
Then there's brevity... compare the following roughly equivalent code.
First, the Email::Stuffer way.
Email::Stuffer->to('Simon Cozens<[email protected]>')
->from('[email protected]')
->text_body("You've been good this year. No coal for you.")
->attach_file('choochoo.gif')
->send;
And now doing it directly with a knowledge of what your attachment is, and
what the correct MIME structure is.
use Email::MIME;
use Email::Sender::Simple;
use IO::All;
Email::Sender::Simple->try_to_send(
Email::MIME->create(
header => [
To => '[email protected]',
From => '[email protected]',
],
parts => [
Email::MIME->create(
body => "You've been a good boy this year. No coal for you."
),
Email::MIME->create(
body => io('choochoo.gif'),
attributes => {
filename => 'choochoo.gif',
content_type => 'image/gif',
},
),
],
);
);
Again, if you know MIME well, and have the patience to manually code up
the L<Email::MIME> structure, go do that, if you really want to.
Email::Stuffer as the name suggests, solves one case and one case only:
generate some stuff, and email it to somewhere, as conveniently as
possible. DWIM, but do it as thinly as possible and use the solid
Email:: modules underneath.
=head1 COOKBOOK
Here is another example (maybe plural later) of how you can use
Email::Stuffer's brevity to your advantage.
=head2 Custom Alerts
package SMS::Alert;
use base 'Email::Stuffer';
sub new {
shift()->SUPER::new(@_)
->from('[email protected]')
# Of course, we could have pulled these from
# $MyConfig->{support_tech} or something similar.
->to('[email protected]')
->transport('SMTP', { host => '123.123.123.123' });
}
Z<>
package My::Code;
unless ( $Server->restart ) {
# Notify the admin on call that a server went down and failed
# to restart.
SMS::Alert->subject("Server $Server failed to restart cleanly")
->send;
}
=head1 METHODS
As you can see from the synopsis, all methods that B<modify> the
Email::Stuffer object returns the object, and thus most normal calls are
chainable.
However, please note that C<send>, and the group of methods that do not
change the Email::Stuffer object B<do not> return the object, and thus
B<are not> chainable.
=cut
use Carp qw(croak);
use File::Basename ();
use Params::Util 1.05 qw(_INSTANCE _INSTANCEDOES);
use Email::MIME 1.943 ();
use Email::MIME::Creator ();
use Email::Sender::Simple ();
use Module::Runtime qw(require_module);
#####################################################################
# Constructor and Accessors
=method new
Creates a new, empty, Email::Stuffer object.
You can pass a hashref of properties to set, including:
=for :list
* to
* from
* cc
* bcc
* reply_to
* subject
* text_body
* html_body
* transport
The to, cc, bcc, and reply_to headers properties may be provided as array
references. The array's contents will be used as the list of arguments to the
setter.
=cut
my %IS_INIT_ARG = map {; $_ => 1 } qw(
to from cc bcc reply_to subject text_body html_body transport
);
my %IS_ARRAY_ARG = map {; $_ => 1 } qw(
to cc bcc reply_to
transport
);
sub new {
Carp::croak("new method called on Email::Stuffer instance") if ref $_[0];
my ($class, $arg) = @_;
my $self = bless {
parts => [],
email => Email::MIME->create(
header => [],
parts => [],
),
}, $class;
my @init_args = keys %{ $arg || {} };
if (my @bogus = grep {; ! $IS_INIT_ARG{$_} } @init_args) {
Carp::croak("illegal arguments to Email::Stuffer->new: @bogus");
}
for my $init_arg (@init_args) {
my @args = $arg->{$init_arg};
if ($IS_ARRAY_ARG{$init_arg} && ref $args[0] && ref $args[0] eq 'ARRAY') {
@args = @{ $args[0] };
}
$self->$init_arg(@args);
}
$self;
}
sub _self {
my $either = shift;
ref($either) ? $either : $either->new;
}
=method header_names
Returns, as a list, all of the headers currently set for the Email
For backwards compatibility, this method can also be called as B[headers].
=cut
sub header_names {
shift()->{email}->header_names;
}
sub headers {
shift()->{email}->header_names; ## This is now header_names, headers is depreciated
}
=method parts
Returns, as a list, the L<Email::MIME> parts for the Email
=cut
sub parts {
grep { defined $_ } @{shift()->{parts}};
}
#####################################################################
# Header Methods
=method header
$stuffer->header($header_name => $value)
This method sets a named header in the email. Multiple calls with the same
C<$header_name> will overwrite previous calls C<$value>.
=cut
sub header {
my $self = shift()->_self;
return unless @_;
$self->{email}->header_str_set(ucfirst shift, shift);
return $self;
}
=method to
$stuffer->to(@addresses)
This method sets the To header in the email.
=cut
sub _assert_addr_list_ok {
my ($self, $header, $allow_empty, $list) = @_;
Carp::croak("$header is a required field")
unless $allow_empty or @$list;
for (@$list) {
Carp::croak("list of $header headers contains undefined values")
unless defined;
Carp::croak("list of $header headers contains unblessed references")
if ref && ! blessed $_;
}
}
sub to {
my $self = shift()->_self;
$self->_assert_addr_list_ok(to => 0 => \@_);
$self->{email}->header_str_set(To => (@_ > 1 ? \@_ : @_));
return $self;
}
=method from
$stuffer->from($address)
This method sets the From header in the email.
=cut
sub from {
my $self = shift()->_self;
$self->_assert_addr_list_ok(from => 0 => \@_);
Carp::croak("only one address is allowed in the from header") if @_ > 1;
$self->{email}->header_str_set(From => shift);
return $self;
}
=method reply_to
$stuffer->reply_to($address)
This method sets the Reply-To header in the email.
=cut
sub reply_to {
my $self = shift()->_self;
$self->_assert_addr_list_ok('reply-to' => 0 => \@_);
Carp::croak("only one address is allowed in the reply-to header") if @_ > 1;
$self->{email}->header_str_set('Reply-To' => shift);
return $self;
}
=method cc
$stuffer->cc(@addresses)
This method sets the Cc header in the email.
=cut
sub cc {
my $self = shift()->_self;
$self->_assert_addr_list_ok(cc => 1 => \@_);
$self->{email}->header_str_set(Cc => (@_ > 1 ? \@_ : @_));
return $self;
}
=method bcc
$stuffer->bcc(@addresses)
This method sets the Bcc header in the email.
=cut
sub bcc {
my $self = shift()->_self;
$self->_assert_addr_list_ok(bcc => 1 => \@_);
$self->{email}->header_str_set(Bcc => (@_ > 1 ? \@_ : @_));
return $self;
}
=method subject
$stuffer->subject($text)
This method sets the Subject header in the email.
=cut
sub subject {
my $self = shift()->_self;
Carp::croak("subject is a required field") unless defined $_[0];
$self->{email}->header_str_set(Subject => shift);
return $self;
}
#####################################################################
# Body and Attachments
=method text_body
$stuffer->text_body($body, %attributes);
Sets the text body of the email. Appropriate headers are set for you.
You may override MIME attributes as needed. See the C<attributes>
parameter to L<Email::MIME/create> for the headers you can set.
If C<$body> is undefined, this method will do nothing.
Prior to Email::Stuffer version 0.015 text body was marked as flowed,
which broke all pre-formated body text. Empty space at the beggining
of the line was dropped and every new line character could be changed
to one space (and vice versa). Version 0.015 (and later) does not set
flowed format automatically anymore and so text body is really plain
text. If you want to use old behavior of "advanced" flowed formatting,
set flowed format manually by: C<< text_body($body, format => 'flowed') >>.
=cut
sub text_body {
my $self = shift()->_self;
my $body = defined $_[0] ? shift : return $self;
my %attr = (
# Defaults
content_type => 'text/plain',
charset => 'utf-8',
encoding => 'quoted-printable',
# Params overwrite them
@_,
);
# Create the part in the text slot
$self->{parts}->[0] = Email::MIME->create(
attributes => \%attr,
body_str => $body,
);
$self;
}
=method html_body
$stuffer->html_body($body, %attributes);
Sets the HTML body of the email. Appropriate headers are set for you.
You may override MIME attributes as needed. See the C<attributes>
parameter to L<Email::MIME/create> for the headers you can set.
If C<$body> is undefined, this method will do nothing.
=cut
sub html_body {
my $self = shift()->_self;
my $body = defined $_[0] ? shift : return $self;
my %attr = (
# Defaults
content_type => 'text/html',
charset => 'utf-8',
encoding => 'quoted-printable',
# Params overwrite them
@_,
);
# Create the part in the HTML slot
$self->{parts}->[1] = Email::MIME->create(
attributes => \%attr,
body_str => $body,
);
$self;
}
=method attach
$stuffer->attach($contents, %attributes)
Adds an attachment to the email. The first argument is the file contents
followed by (as for text_body and html_body) the list of headers to use.
Email::Stuffer will I<try> to guess the headers correctly, but you may wish
to provide them anyway to be sure. Encoding is Base64 by default. See
the C<attributes> parameter to L<Email::MIME/create> for the headers you
can set.
=cut
sub _detect_content_type {
my ($filename, $body) = @_;
if (defined($filename)) {
if ($filename =~ /\.([a-zA-Z]{3,4})\z/) {
my $content_type = {
'gif' => 'image/gif',
'png' => 'image/png',
'jpg' => 'image/jpeg',
'jpeg' => 'image/jpeg',
'txt' => 'text/plain',
'htm' => 'text/html',
'html' => 'text/html',
'css' => 'text/css',
'csv' => 'text/csv',
'pdf' => 'application/pdf',
'wav' => 'audio/wav',
}->{lc($1)};
return $content_type if defined $content_type;
}
}
if ($body =~ /
\A(?:
(GIF8) # gif
| (\xff\xd8) # jpeg
| (\x89PNG) # png
| (%PDF-) # pdf
)
/x) {
return 'image/gif' if $1;
return 'image/jpeg' if $2;
return 'image/png' if $3;
return 'application/pdf' if $4;
}
return 'application/octet-stream';
}
sub attach {
my $self = shift()->_self;
my $body = defined $_[0] ? shift : return undef;
my %attr = (
# Cheap defaults
encoding => 'base64',
# Params overwrite them
@_,
);
# The more expensive defaults if needed
unless ( $attr{content_type} ) {
$attr{content_type} = _detect_content_type($attr{filename}, $body);
}
### MORE?
# Determine the slot to put it at
my $slot = scalar @{$self->{parts}};
$slot = 3 if $slot < 3;
# Create the part in the attachment slot
$self->{parts}->[$slot] = Email::MIME->create(
attributes => \%attr,
body => $body,
);
$self;
}
=method attach_file
$stuffer->attach_file($file, %attributes)
Attachs a file that already exists on the filesystem to the email.
C<attach_file> will attempt to auto-detect the MIME type, and use the
file's current name when attaching. See the C<attributes> parameter to
L<Email::MIME/create> for the headers you can set.
C<$file> can be a filename or an IO::All::File object.
=cut
sub attach_file {
my $self = shift;
my $body_arg = shift;
my $name = undef;
my $body = undef;
# Support IO::All::File arguments
if ( Params::Util::_INSTANCE($body_arg, 'IO::All::File') ) {
$body_arg->binmode;
$name = $body_arg->name;
$body = $body_arg->all;
# Support file names
} elsif ( defined $body_arg and Params::Util::_STRING($body_arg) ) {
croak "No such file '$body_arg'" unless -f $body_arg;
$name = $body_arg;
$body = _slurp( $body_arg );
# That's it
} else {
my $type = ref($body_arg) || "<$body_arg>";
croak "Expected a file name or an IO::All::File derivative, got $type";
}
# Clean the file name
$name = File::Basename::basename($name);
croak("basename somehow returned undef") unless defined $name;
# Now attach as normal
$self->attach( $body, name => $name, filename => $name, @_ );
}
# Provide a simple _slurp implementation
sub _slurp {
my $file = shift;
local $/ = undef;
open my $slurp, '<:raw', $file or croak("error opening $file: $!");
my $source = <$slurp>;
close( $slurp ) or croak "error after slurping $file: $!";
\$source;
}
=method transport
$stuffer->transport( $moniker, @options )
or
$stuffer->transport( $transport_obj )
The C<transport> method specifies the L<Email::Sender> transport that
you want to use to send the email, and any options that need to be
used to instantiate the transport. C<$moniker> is used as the transport
name; if it starts with an equals sign (C<=>) then the text after the
sign is used as the class. Otherwise, the text is prepended by
C<Email::Sender::Transport::>.
Alternatively, you can pass a complete transport object (which must be
an L<Email::Sender::Transport> object) and it will be used as is.
=cut
sub transport {
my $self = shift()->_self;
if ( @_ ) {
# Change the transport
if ( _INSTANCEDOES($_[0], 'Email::Sender::Transport') ) {
$self->{transport} = shift;
} else {
my ($moniker, @arg) = @_;
my $class = $moniker =~ s/\A=//
? $moniker
: "Email::Sender::Transport::$moniker";
require_module($class);
my $transport = $class->new(@arg);
$self->{transport} = $transport;
}
}
$self;
}
#####################################################################
# Output Methods
=method email
my $email_mime = $stuffer->email;
This method creates and returns the full L<Email::MIME> object for the email.
=cut
sub email {
my $self = shift;
my @parts = $self->parts;
### Lyle Hopkins, code added to Fix single part, and multipart/alternative
### problems
if (scalar(@{ $self->{parts} }) >= 3) {
## multipart/mixed
$self->{email}->parts_set(\@parts);
} elsif (scalar(@{ $self->{parts} })) {
## Check we actually have any parts
if ( _INSTANCE($parts[0], 'Email::MIME')
&& _INSTANCE($parts[1], 'Email::MIME')
) {
## multipart/alternate
$self->{email}->header_set('Content-Type' => 'multipart/alternative');
$self->{email}->parts_set(\@parts);
} elsif (_INSTANCE($parts[0], 'Email::MIME')) {
## As @parts is $self->parts without the blanks, we only need check
## $parts[0]
## single part text/plain
_transfer_headers($self->{email}, $parts[0]);
$self->{email} = $parts[0];
}
}
$self->{email};
}
# Support coercion to an Email::MIME
sub __as_Email_MIME { shift()->email }
# Quick any routine
sub _any (&@) {
my $f = shift;
return if ! @_;
for (@_) {
return 1 if $f->();
}
return 0;
}
# header transfer from one object to another
sub _transfer_headers {
# $_[0] = from, $_[1] = to
my @headers_move = $_[0]->header_names;
my @headers_skip = $_[1]->header_names;
foreach my $header_name (@headers_move) {
next if _any { $_ eq $header_name } @headers_skip;
my @values = $_[0]->header($header_name);
$_[1]->header_str_set( $header_name, @values );
}
}
=method as_string
my $email_document = $stuffer->as_string;
Returns the string form of the email. Identical to (and uses behind the
scenes) C<< Email::MIME->as_string >>.
=cut
sub as_string {
shift()->email->as_string;
}
=method send
$stuffer->send;
or
$stuffer->send({ to => [ $to_1, $to_2 ], from => $sender });
Sends the email via L<Email::Sender::Simple>.
L<Envelope information|Email::Sender::Manual::QuickStart/"envelope information">
can be specified in a hash reference.
On failure, returns false.
=cut
sub send {
my $self = shift;
my $arg = shift;
my $email = $self->email or return undef;
my $transport = $self->{transport};
Email::Sender::Simple->try_to_send(
$email,
{
($transport ? (transport => $transport) : ()),
$arg ? %$arg : (),
},
);
}
=method send_or_die
$stuffer->send_or_die;
or
$stuffer->send_or_die({ to => [ $to_1, $to_2 ], from => $sender });
Sends the email via L<Email::Sender::Simple>.
L<Envelope information|Email::Sender::Manual::QuickStart/"envelope information">
can be specified in a hash reference.
On failure, throws an exception.
=cut
sub send_or_die {
my $self = shift;
my $arg = shift;
my $email = $self->email or return undef;
my $transport = $self->{transport};
Email::Sender::Simple->send(
$email,
{
($transport ? (transport => $transport) : ()),
$arg ? %$arg : (),
},
);
}
1;
=head1 TO DO
=for :list
* Fix a number of bugs still likely to exist
* Write more tests.
* Add any additional small bit of automation that isn't too expensive
=head1 SEE ALSO
L<Email::MIME>, L<Email::Sender>, L<http://ali.as/>
=cut