From daniel em ruoso.com Tue Sep 6 06:03:00 2011 From: daniel em ruoso.com (daniel em ruoso.com) Date: Tue, 06 Sep 2011 09:03:00 -0400 Subject: [Cascavel-pm] Fwd: Senior Perl Developer - Betonmarkets.com - telecommute position Message-ID: Repassando... -- Sent from my Android phone with K-9 Mail. Please excuse my brevity. Jean-Yves Sireau escreveu: Dear Daniel, Betonmarkets.com is looking to recruit a Senior Perl Developer (telecommute position). This is a senior position for experienced candidates. Would you, or any person you know, be potentially interested in this opportunity? Betonmarkets.com is a financial betting website operated by Regent Markets Group Ltd., a company with offices and staff in a number of jurisdictions. Founded in 1999, the company has grown to become a leader in the fixed-odds financial betting field, with over 200,000 registered accounts and over $120 million/annum turnover. The company is affiliated to Regent Pacific Group, a company listed on the Hong Kong Stock Exchange. We are looking to recruit a Senior Perl Developer to further develop the betonmarkets.com website and systems. The successful applicant will have strong experience and talent in software development (notably in a Linux/Perl environment), the ability to work within and manage a very large codebase, is conscientious and self-motivated, exhibits interest (and preferably prior experience) in the financial markets, and shares the company's vision of creating a competitive market in limited-risk financial betting products. The job will entail refactoring legacy code into properly architectured Moose objects, development of new financial betting products, interfacing to financial data feeds, development of financial charting facilities, integration with payment, marketing, accounting, and risk management systems, development of website white-labels, and working with our financial mathematics (quant) team on the proper code factorization of complex derivatives pricing models. The company has a developer-lead culture and the successful applicant is expected to participate in the development of the company's IT strategy. The position is full-time and applicants may be located anywhere in the world. The company leverages the latest internet-based communication tools to manage distributed Scrums and projects. If you would be interested to know more about this position, kindly email me your CV. Please feel free to forward this email to any person in the Perl community who may be interested in the opportunity. Best regards Jean-Yves Sireau -- Jean-Yves Sireau, CEO Regent Markets Group Ltd. _____________________________________________ Click to view this email in a browser http://hosted.verticalresponse.com/886969/11a340fdcb/1773594829/b70ea365d1/ If you no longer wish to receive these emails, please reply to this message with "Unsubscribe" in the subject line or simply click on the following link: http://cts.vresp.com/u?11a340fdcb/b70ea365d1/mlpftw _____________________________________________ This message was sent by Jean-Yves Sireau using VerticalResponse Regent Markets (Malta) Ltd. Mompalao Building, Suite 2 Msida, Malta MSD1825 MT Read the VerticalResponse marketing policy: http://www.verticalresponse.com/content/pm_policy.html -------------- Próxima Parte ---------- Um anexo em HTML foi limpo... URL: From mmmferreira em gmail.com Wed Sep 21 06:20:13 2011 From: mmmferreira em gmail.com (=?ISO-8859-1?Q?M=E1rcio_Ferreira_Ribeiro?=) Date: Wed, 21 Sep 2011 10:20:13 -0300 Subject: [Cascavel-pm] Enviar email com Perl usando Gmail Message-ID: Olá Pessoal, como vão? Eu sei que é uma coisa simples, mas não consigo fazer funcionar. Eu sempre enviei emails usando o sendmail local dos servidores onde trabalhei, e nesse projeto não estava diferente, até que decidiram em mudar o provedor de emails para o Google, usando o Gmail. E há uma exigência para que o envio de emails (boletins de forma geral), seja feito através dos servidores do Google. Então fui procurar sobre isso na internet e encontrei algumas coisas bem praticas mas nada funcionou Receita de bolo 1 (Não retorna erros, alertas, nem nada): use warnings; use Mail::Webmail::Gmail; my $gmail = Mail::Webmail::Gmail->new( username => 'mmmferreira em gmail.com', password => 'XXXXXX', ); $gmail->send_message( to => 'mmmferreira em gmail.com', subject => 'Test Gmail', msgbody => 'This is a test 1.' ); Receita de bolo 2 (Não retorna erros, alertas, nem nada): use strict; use warnings; use Email::Send; use Email::Send::Gmail; use Email::Simple::Creator; my $email1 = Email::Simple->create( header => [ From => 'mmmferreira em gmail.com', To => 'mmmferreira em gmail.com', Subject => 'Test Gmail', ], body => 'Test test', ); my $sender = Email::Send->new( { mailer => 'SMTP::TLS', mailer_args => [ Host => 'smtp.gmail.com', Port => 587, username => 'mmmferreira em gmail.com', password => 'XXXXXX', ] } ); eval { $sender->send($email1) }; die "Error sending email Gmail: $@" if $@; Receita de bolo 3 (retorna esse erro: "Could not connect to SMTP server", mas mesmo alterando SMTP para algumas sugestões que encontrei na internet, tb não funcionou): use warnings; use Email::Send::SMTP::Gmail; my $mail=Email::Send::SMTP::Gmail->new( -smtp=>'gmail.com', -login=>'mmmferreira em gmail.com', -pass=>'XXXXXX'); $mail->send(-to=>mmmferreira em gmail.com', -subject=>'Hello!', -verbose=>'1', -body=>'Just testing it' #,-attachments=>'full_path_to_file' ); $mail->bye; Já verifiquei se há algum bloqueio de portas nas duas máquinas que estou testando e não encontrei nada. O POP3 e o IMAP estão habilitados na minha conta pessoal que estou usando para testar. Só me restou recorrer a vocês. Agradeço por qq ajuda, dica ou direção q me derem. Márcio Ferreira -- Empregar.com - Uma forma simples de encontrar seu próximo emprego na Internet. -------------- Próxima Parte ---------- Um anexo em HTML foi limpo... URL: From juniiior182 em gmail.com Wed Sep 21 06:43:35 2011 From: juniiior182 em gmail.com (Junior Moraes) Date: Wed, 21 Sep 2011 10:43:35 -0300 Subject: [Cascavel-pm] Enviar email com Perl usando Gmail In-Reply-To: References: Message-ID: Hi. Não testei os módulos que você exemplificou, mas consigo enviar emails normalmente com o GMail através do módulo Net::SMTP::TLS. Se ajudar em algo... https://gist.github.com/f7cecd4edc80e165b09b []'s 2011/9/21 Márcio Ferreira Ribeiro > Olá Pessoal, > > como vão? > Eu sei que é uma coisa simples, mas não consigo fazer funcionar. Eu sempre > enviei emails usando o sendmail local dos servidores onde trabalhei, e nesse > projeto não estava diferente, até que decidiram em mudar o provedor de > emails para o Google, usando o Gmail. > E há uma exigência para que o envio de emails (boletins de forma geral), > seja feito através dos servidores do Google. > Então fui procurar sobre isso na internet e encontrei algumas coisas bem > praticas mas nada funcionou > > Receita de bolo 1 (Não retorna erros, alertas, nem nada): > use warnings; > use Mail::Webmail::Gmail; > my $gmail = Mail::Webmail::Gmail->new( > username => 'mmmferreira em gmail.com', password => 'XXXXXX', > ); > > $gmail->send_message( to => 'mmmferreira em gmail.com', subject => 'Test > Gmail', msgbody => 'This is a test 1.' ); > > > Receita de bolo 2 (Não retorna erros, alertas, nem nada): > use strict; > use warnings; > use Email::Send; > use Email::Send::Gmail; > use Email::Simple::Creator; > > my $email1 = Email::Simple->create( > header => [ > From => 'mmmferreira em gmail.com', > To => 'mmmferreira em gmail.com', > Subject => 'Test Gmail', > ], > body => 'Test test', > ); > > my $sender = Email::Send->new( > { mailer => 'SMTP::TLS', > mailer_args => [ > Host => 'smtp.gmail.com', > Port => 587, > username => 'mmmferreira em gmail.com', > password => 'XXXXXX', > ] > } > ); > > eval { $sender->send($email1) }; > die "Error sending email Gmail: $@" if $@; > > > Receita de bolo 3 (retorna esse erro: "Could not connect to SMTP server", > mas mesmo alterando SMTP para algumas sugestões que encontrei na internet, > tb não funcionou): > use warnings; > use Email::Send::SMTP::Gmail; > > my $mail=Email::Send::SMTP::Gmail->new( -smtp=>'gmail.com', > -login=>'mmmferreira em gmail.com > ', > -pass=>'XXXXXX'); > > $mail->send(-to=>mmmferreira em gmail.com', > -subject=>'Hello!', > -verbose=>'1', > -body=>'Just testing it' > #,-attachments=>'full_path_to_file' > ); > > $mail->bye; > > > > Já verifiquei se há algum bloqueio de portas nas duas máquinas que estou > testando e não encontrei nada. O POP3 e o IMAP estão habilitados na minha > conta pessoal que estou usando para testar. > Só me restou recorrer a vocês. > > Agradeço por qq ajuda, dica ou direção q me derem. > > Márcio Ferreira > > -- > Empregar.com - Uma forma simples de encontrar seu > próximo emprego na Internet. > > > _______________________________________________ > Cascavel-pm mailing list > Cascavel-pm em pm.org > http://mail.pm.org/mailman/listinfo/cascavel-pm > -------------- Próxima Parte ---------- Um anexo em HTML foi limpo... URL: From mmmferreira em gmail.com Wed Sep 21 08:54:01 2011 From: mmmferreira em gmail.com (=?ISO-8859-1?Q?M=E1rcio_Ferreira_Ribeiro?=) Date: Wed, 21 Sep 2011 12:54:01 -0300 Subject: [Cascavel-pm] Enviar email com Perl usando Gmail In-Reply-To: References: Message-ID: Muito Obrigado Junior. Funcionou de primeira. Agora vou fazer os ajustes dentro do sistema e colocar para funcionar o mais rápido possível. Atenciosamente, Márcio Ferreira 2011/9/21 Junior Moraes > Hi. > > Não testei os módulos que você exemplificou, mas consigo enviar emails > normalmente com o GMail através do módulo Net::SMTP::TLS. > > Se ajudar em algo... > https://gist.github.com/f7cecd4edc80e165b09b > > []'s > > > 2011/9/21 Márcio Ferreira Ribeiro > >> Olá Pessoal, >> >> como vão? >> Eu sei que é uma coisa simples, mas não consigo fazer funcionar. Eu sempre >> enviei emails usando o sendmail local dos servidores onde trabalhei, e nesse >> projeto não estava diferente, até que decidiram em mudar o provedor de >> emails para o Google, usando o Gmail. >> E há uma exigência para que o envio de emails (boletins de forma geral), >> seja feito através dos servidores do Google. >> Então fui procurar sobre isso na internet e encontrei algumas coisas bem >> praticas mas nada funcionou >> >> Receita de bolo 1 (Não retorna erros, alertas, nem nada): >> use warnings; >> use Mail::Webmail::Gmail; >> my $gmail = Mail::Webmail::Gmail->new( >> username => 'mmmferreira em gmail.com', password => >> 'XXXXXX', >> ); >> >> $gmail->send_message( to => 'mmmferreira em gmail.com', subject => 'Test >> Gmail', msgbody => 'This is a test 1.' ); >> >> >> Receita de bolo 2 (Não retorna erros, alertas, nem nada): >> use strict; >> use warnings; >> use Email::Send; >> use Email::Send::Gmail; >> use Email::Simple::Creator; >> >> my $email1 = Email::Simple->create( >> header => [ >> From => 'mmmferreira em gmail.com', >> To => 'mmmferreira em gmail.com', >> Subject => 'Test Gmail', >> ], >> body => 'Test test', >> ); >> >> my $sender = Email::Send->new( >> { mailer => 'SMTP::TLS', >> mailer_args => [ >> Host => 'smtp.gmail.com', >> Port => 587, >> username => 'mmmferreira em gmail.com', >> password => 'XXXXXX', >> ] >> } >> ); >> >> eval { $sender->send($email1) }; >> die "Error sending email Gmail: $@" if $@; >> >> >> Receita de bolo 3 (retorna esse erro: "Could not connect to SMTP server", >> mas mesmo alterando SMTP para algumas sugestões que encontrei na internet, >> tb não funcionou): >> use warnings; >> use Email::Send::SMTP::Gmail; >> >> my $mail=Email::Send::SMTP::Gmail->new( -smtp=>'gmail.com', >> -login=>'mmmferreira em gmail.com >> ', >> -pass=>'XXXXXX'); >> >> $mail->send(-to=>mmmferreira em gmail.com', >> -subject=>'Hello!', >> -verbose=>'1', >> -body=>'Just testing it' >> #,-attachments=>'full_path_to_file' >> ); >> >> $mail->bye; >> >> >> >> Já verifiquei se há algum bloqueio de portas nas duas máquinas que estou >> testando e não encontrei nada. O POP3 e o IMAP estão habilitados na minha >> conta pessoal que estou usando para testar. >> Só me restou recorrer a vocês. >> >> Agradeço por qq ajuda, dica ou direção q me derem. >> >> Márcio Ferreira >> >> -- >> Empregar.com - Uma forma simples de encontrar seu >> próximo emprego na Internet. >> >> >> _______________________________________________ >> Cascavel-pm mailing list >> Cascavel-pm em pm.org >> http://mail.pm.org/mailman/listinfo/cascavel-pm >> > > > _______________________________________________ > Cascavel-pm mailing list > Cascavel-pm em pm.org > http://mail.pm.org/mailman/listinfo/cascavel-pm > -- Empregar.com - Uma forma simples de encontrar seu próximo emprego na Internet. -------------- Próxima Parte ---------- Um anexo em HTML foi limpo... URL: