in reply to Re^4: Email an Attachment via Gmail
in thread Email an Attachment via Gmail

Lol... I think that Email::Send::SMTP::Gmail has a bug on the first line in v0.43. And taking a closer look at the module's test suite does nothing to instill confidence in the module; there are essentially no tests other than "Does the module load? Yes."

I can't right now, but try changing line one of the module from package Gmail; to package Email::Send::SMTP::Gmail;, and if that fixes your issue, file a bug report. ;)


Dave

Replies are listed 'Best First'.
Re^6: Email an Attachment via Gmail
by anujsethi91 (Initiate) on Apr 09, 2013 at 10:01 UTC
    hey,its still not working,, i think i'll file the bug report,, thanks anyways :)

      Make sure you have the latest version of Email::Send::SMTP::Gmail installed (v0.96).

      $ perl -MEmail::Send::SMTP::Gmail -e 'print "$Email::Send::SMTP::Gmail +::VERSION\n"' 0.96 $
      The way forward always starts with a minimal test.