X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2FMisc.pm;h=7d7b7d06169a3fb66d6056ed6c80d56474a7a659;hb=f583418a23dfb001978d3abf8476670d5adb96af;hp=df971706852f0d0c88fc7f998a6fdf08d5125115;hpb=f7e1a877f69a8a144fc2da7a422c4e3f728321cb;p=freeside.git diff --git a/FS/FS/Misc.pm b/FS/FS/Misc.pm index df9717068..7d7b7d061 100644 --- a/FS/FS/Misc.pm +++ b/FS/FS/Misc.pm @@ -5,7 +5,7 @@ use vars qw ( @ISA @EXPORT_OK ); use Exporter; @ISA = qw( Exporter ); -@EXPORT_OK = qw( send_email ); +@EXPORT_OK = qw( send_email send_fax ); =head1 NAME @@ -41,12 +41,15 @@ I - (optional) MIME type I - (required) arrayref of body text lines +I - (optional) arrayref of MIME::Entity->build PARAMHASH refs, not MIME::Entity objects. These will be passed as arguments to MIME::Entity->attach(). + =cut use vars qw( $conf ); use Date::Format; use Mail::Header; use Mail::Internet 1.44; +use MIME::Entity; use FS::UID; FS::UID->install_callback( sub { @@ -58,23 +61,47 @@ sub send_email { $ENV{MAILADDRESS} = $options{'from'}; my $to = ref($options{to}) ? join(', ', @{ $options{to} } ) : $options{to}; - my @header = ( - 'From: '. $options{'from'}, - 'To: '. $to, - 'Sender: '. $options{'from'}, - 'Reply-To: '. $options{'from'}, - 'Date: '. time2str("%a, %d %b %Y %X %z", time), - 'Subject: '. $options{'subject'}, - ); - push @header, 'Content-Type: '. $options{'content-type'} - if exists($options{'content-type'}); - my $header = new Mail::Header ( \@header ); - my $message = new Mail::Internet ( - 'Header' => $header, - 'Body' => $options{'body'}, + my @mimeparts = (ref($options{'mimeparts'}) eq 'ARRAY') + ? @{$options{'mimeparts'}} : (); + my $mimetype = (scalar(@mimeparts)) ? 'multipart/mixed' : 'text/plain'; + + my @mimeargs; + if (scalar(@mimeparts)) { + @mimeargs = ( + 'Type' => 'multipart/mixed', + ); + + push @mimeparts, + { + 'Data' => $options{'body'}, + 'Disposition' => 'inline', + 'Type' => (($options{'content-type'} ne '') + ? $options{'content-type'} : 'text/plain'), + }; + } else { + @mimeargs = ( + 'Type' => (($options{'content-type'} ne '') + ? $options{'content-type'} : 'text/plain'), + 'Data' => $options{'body'}, + ); + } + + my $message = MIME::Entity->build( + 'From' => $options{'from'}, + 'To' => $to, + 'Sender' => $options{'from'}, + 'Reply-To' => $options{'from'}, + 'Date' => time2str("%a, %d %b %Y %X %z", time), + 'Subject' => $options{'subject'}, + @mimeargs, ); + foreach my $part (@mimeparts) { + next unless ref($part) eq 'HASH'; #warn? + $message->attach(%$part); + } + my $smtpmachine = $conf->config('smtpmachine'); $!=0; @@ -84,6 +111,89 @@ sub send_email { } +=item send_fax OPTION => VALUE ... + +Options: + +I - (required) 10-digit phone number w/ area code + +I - (required) Array ref containing PostScript or TIFF Class F document + +-or- + +I - (required) Filename of PostScript TIFF Class F document + +...any other options will be passed to L + + +=cut + +sub send_fax { + + my %options = @_; + + die 'HylaFAX support has not been configured.' + unless $conf->exists('hylafax'); + + eval { + require Fax::Hylafax::Client; + }; + + if ($@) { + if ($@ =~ /^Can't locate Fax.*/) { + die "You must have Fax::Hylafax::Client installed to use invoice faxing." + } else { + die $@; + } + } + + my %hylafax_opts = map { split /\s+/ } $conf->config('hylafax'); + + die 'Called send_fax without a \'dialstring\'.' + unless exists($options{'dialstring'}); + + if (exists($options{'docdata'}) and ref($options{'docdata'}) eq 'ARRAY') { + my $dir = $FS::UID::conf_dir. "cache.". $FS::UID::datasrc; + my $fh = new File::Temp( + TEMPLATE => 'faxdoc.'. $options{'dialstring'} . '.XXXXXXXX', + DIR => $dir, + UNLINK => 0, + ) or die "can't open temp file: $!\n"; + + $options{docfile} = $fh->filename; + + print $fh @{$options{'docdata'}}; + close $fh; + + delete $options{'docdata'}; + } + + die 'Called send_fax without a \'docfile\' or \'docdata\'.' + unless exists($options{'docfile'}); + + #FIXME: Need to send canonical dialstring to HylaFAX, but this only + # works in the US. + + $options{'dialstring'} =~ s/[^\d\+]//g; + if ($options{'dialstring'} =~ /^\d{10}$/) { + $options{dialstring} = '+1' . $options{'dialstring'}; + } else { + return 'Invalid dialstring ' . $options{'dialstring'} . '.'; + } + + my $faxjob = &Fax::Hylafax::Client::sendfax(%options, %hylafax_opts); + + if ($faxjob->success) { + warn "Successfully queued fax to '$options{dialstring}' with jobid " . + $faxjob->jobid; + } else { + return 'Error while sending FAX: ' . $faxjob->trace; + } + + return ''; + +} + package Mail::Internet; use Mail::Address; @@ -138,6 +248,9 @@ sub Mail::Internet::mysmtpsend { # Send it + #warn "Headers: \n" . join('',@{$hdr->header}); + #warn "Body: \n" . join('',@{$src->body}); + my $ok = $smtp->mail( $envelope ) && $smtp->to(@addr) && $smtp->data(join("", @{$hdr->header},"\n",@{$src->body})); @@ -161,6 +274,8 @@ This package exists. L, L, L, the base documentation. +L + =cut 1;