Skip Menu |

This queue is for tickets about the Email-Send-SMTP-Gmail CPAN distribution.

Report information
The Basics
Id: 123558
Status: resolved
Priority: 0/
Queue: Email-Send-SMTP-Gmail

People
Owner: Nobody in particular
Requestors: hcolina [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: 1.30



Subject: Contentype html ignored
Date: Wed, 8 Nov 2017 06:55:41 -0400
To: bug-Email-Send-SMTP-Gmail [...] rt.cpan.org
From: Hector Colina <hcolina [...] gmail.com>
Hi Using your module with contentype option text/html is being ignored so HTML body message is ignored. Do you have some indications or fixed? I'm using something like this: my $mail=Email::Send::SMTP::Gmail->new( -smtp=>'smtp.gmail.com', -login=>'xxxxxx.info@gmail.com', -pass=>'*******'); $mail->send(-to=>'gggggg@ggggg', -subject=>$asunto, -body=>$cuerpo, -contenttype=>'text/html', -attachments=>$adjunto); $mail->bye; Thank you -- ********************************************** Hector Colina. Linux counter id 131637 Debian user, aka e1th0r Mérida-Venezuela http://colina.net.ve Key fingerprint = E81B 8228 8919 EE27 85B7 A59B 357F 81F5 5CFC B481 LA REVOLUCIÓN NO SE HACE UNICAMENTE CON LAS ARMAS
Hello, Please, check you are not using an obsolete release of the module. Also, note that your email ($cuerpo) should be written in html. my $cuerpo="Hello <b>world</b><br>Line 2<br>"; $mail->send(-to=>'gggggg@ggggg', -subject=>$asunto, -body=>$cuerpo, -contenttype=>'text/html', -attachments=>$adjunto); $mail->bye; On Wed Nov 08 05:56:15 2017, hcolina@gmail.com wrote: Show quoted text
> Hi > > Using your module with contentype option text/html is being ignored so > HTML body message is ignored. > > Do you have some indications or fixed? I'm using something like this: > > my $mail=Email::Send::SMTP::Gmail->new( -smtp=>'smtp.gmail.com', > -login=>'xxxxxx.info@gmail.com', > -pass=>'*******'); > > $mail->send(-to=>'gggggg@ggggg', > -subject=>$asunto, > -body=>$cuerpo, > -contenttype=>'text/html', > -attachments=>$adjunto); > $mail->bye; > > Thank you >
Hello The module has been updated and verified that HTML content is working correctly :-) On Wed Nov 08 07:34:03 2017, PECO wrote: Show quoted text
> Hello, > > Please, check you are not using an obsolete release of the module. > Also, note that your email ($cuerpo) should be written in html. > > my $cuerpo="Hello <b>world</b><br>Line 2<br>"; > > $mail->send(-to=>'gggggg@ggggg', > -subject=>$asunto, > -body=>$cuerpo, > -contenttype=>'text/html', > -attachments=>$adjunto); > $mail->bye; > > > On Wed Nov 08 05:56:15 2017, hcolina@gmail.com wrote:
> > Hi > > > > Using your module with contentype option text/html is being ignored so > > HTML body message is ignored. > > > > Do you have some indications or fixed? I'm using something like this: > > > > my $mail=Email::Send::SMTP::Gmail->new( -smtp=>'smtp.gmail.com', > > -login=>'xxxxxx.info@gmail.com', > > -pass=>'*******'); > > > > $mail->send(-to=>'gggggg@ggggg', > > -subject=>$asunto, > > -body=>$cuerpo, > > -contenttype=>'text/html', > > -attachments=>$adjunto); > > $mail->bye; > > > > Thank you > >
> >