The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Email::Send::SMTP::Gmail - just send emails with attachments using Google's SMTP

SYNOPSIS

                 use strict;
                 use warnings;

                 use Email::Send::SMTP::Gmail;

                 my $mail=Email::Send::SMTP::Gmail->new( -smtp=>'gmail.com',
                                                         -login=>'add_your_address@gmail.com',
                                                         -pass=>'add_your_pass');

                $mail->send(-to=>'target@xxx.com',
                            -subject=>'Hello!',
                            -verbose=>'1',
                            -body=>'Just testing it',
                            -attachments=>'full_path_to_file');

                $mail->bye;

DESCRIPTION

Simple module to send emails through Google's SMTP with or without attachments. You can use from your Gmail account or your email if you are using Gmail to your domain. It supports basic functions such as CC, BCC, ReplyTo.

new(-login=>'', -pass=>'' [, -debug=>''])

It creates the object and opens a session with the SMTP.

send(-to=>'', [-subject=>'', -cc=>'', -bcc=>'', -replyto=>'', -body=>'', -attachments=>''])

It composes and sends the email in one shot

to, cc, bcc: comma separated email addresses
attachments: comma separated files with full path
bye

Close the SMTP session

BUGS

Please report any bugs or feature requests to bug-email-send-smtp-gmail at rt.cpan.org or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Email-Send-SMTP-Gmail. We will be notified, and then you'll automatically be notified of progress on your bug as we make changes.

AUTHORS

Martin Vukovic, <mvukovic at microbotica.es>

Juan Jose 'Peco' San Martin, <peco at cpan.org>

COPYRIGHT

Copyright 2010 Microbotica

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Email::Send::SMTP::Gmail

You can also look for information at: