Hello Leo,
see my comments on your code below.
On Wed, 26 Sep 2012 09:52:55 -0700
Leo Susanto wrote:
> Basic script for gmail with subject:
>
> use strict;
You should also use "use warnings;".
> use Net::SMTP::TLS;
> our $MAIL;
Why "our"
Basic script for gmail with subject:
use strict;
use Net::SMTP::TLS;
our $MAIL;
do "mail.conf";
my $mailer = new Net::SMTP::TLS(
$$MAIL{'Host'},
Hello => $$MAIL{'Hello'},
<< how would you like to generate the data section in the message?>>
I checked the link you kindly sent me, and I actually used it in my example.
So, I can put in my script :
$my_email_body= "
then
$mailer->datasend("$my_email_body ");
On Wed, Sep 26, 2012 at 5:51 PM, Shlomi Fish wrot
Hi Samir,
please avoid replying to me in private (as I specifically request in my
signature), and instead reply to the list. I am now replying to the list.
You should also avoid top-posting, which makes your messages hard to follow:
http://en.wikipedia.org/wiki/Posting_style
I am going to reply
Hi Samir,
a few comments on your code:
On Wed, 26 Sep 2012 14:29:15 +0200
Samir Arishy wrote:
> This code is working.
>
1. Add "use strict;" and "use warnings;".
> use Net::SMTP::TLS;
> my $mailer = new Net::SMTP::TLS(
> 'smtp.gmail.com',
> Hello => 'smtp.gmail.com',
> Port=>
This code is working.
use Net::SMTP::TLS;
my $mailer = new Net::SMTP::TLS(
'smtp.gmail.com',
Hello => 'smtp.gmail.com',
Port=> 587,
User=> 'amyID',
Password=> 'myPW');
$a="data from some calculation inside the script.";
$mailer->mail('x...@y.com');
$mailer->to(
I've been using Gmail and thought you might like to try it out. Here's an
invitation to create an account.
You're Invited to Gmail!
ganesh vignesh has invited you to open a Gmail account.
Gmail is Google's free email service, built on the idea that email can be
intuitive
On Sun, 20 Nov 2011 12:27:31 -0800, samjesse wrote:
> I need a Perl script which will connect to my gmail and download the
> unread emails from a certain folder. But not all the unread emails, only
> those with a certain subjects and from a certain sender. after that mark
> them as re
Imap? Net::IMAP or IMAP::Client
On Nov 21, 2011 3:31 AM, "samjesse" wrote:
> Hi
>
> Can you recommend a good to use Perl module for getting certain new
> emails from my gmail?
>
> thx
>
>
> --
> To unsubscribe, e-mail: beginners-unsubscr...@perl.org
> F
Hi samjesse,
On Sun, 20 Nov 2011 12:27:31 -0800 (PST)
samjesse wrote:
> I need a Perl script which will connect to my gmail and download the
> unread emails from a certain folder. But not all the unread emails,
> only those with a certain subjects and from a certain sender.
> aft
I need a Perl script which will connect to my gmail and download the
unread emails from a certain folder. But not all the unread emails,
only those with a certain subjects and from a certain sender.
after that mark them as read and leave them on the server.
those emails must be stored "app
Hi
Can you recommend a good to use Perl module for getting certain new
emails from my gmail?
thx
--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/
On Mon, Jul 14, 2008 at 2:36 PM, ChrisC <[EMAIL PROTECTED]> wrote:
> Is it possible to access gmail from perl? If so, how would you go
> about it?
>
> Thanks,
>
> Jerry
You might want to start by searching CPAN for Gmail modules:
http://search.cpan.org/search?query=g
Is it possible to access gmail from perl? If so, how would you go
about it?
Thanks,
Jerry
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/
At 02:22 PM 11/26/2004, James W. Thompson, II wrote:
>I know this is off-topic but I have 5 Gmail invites I want rid of...if
>anyone really has a problem with me giving these away here just let me
>know and I won't in the future...
If you want to give away Gmail Invites, why not
I know this is off-topic but I have 5 Gmail invites I want rid of...if
anyone really has a problem with me giving these away here just let me
know and I won't in the future...
https://gmail.google.com/gmail/a-5cb03dc1c9-48a327cb72-602bacc482
https://gmail.google.com/gmail/a-5cb03dc1c9-10e84
On Thu, 2 Sep 2004, Ramprasad A Padmanabhan wrote:
I tried the gmail api to send/recv mail
Mail::Webmail::Gmail
WWW::Scraper::Gmail
WWW::GMail
but all the three failed to make a connection. The problem I feel is
that I am behind a http proxy
That &/or Google may be blocking out third party ac
I tried the gmail api to send/recv mail
Mail::Webmail::Gmail
WWW::Scraper::Gmail
WWW::GMail
but all the three failed to make a connection. The problem I feel is
that I am behind a http proxy
Thanks
Ram
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL
19 matches
Mail list logo