kaisellgren / mailer

Compose and send emails from Dart. Supports file attachments, HTML emails and multiple transport methods.
MIT License
166 stars 86 forks source link

html template #230

Closed CodeRound closed 1 year ago

CodeRound commented 1 year ago

i am trying to send large html content then mailer not able to send mail

`

VISIT SITE   |   SHOWROOM   |   CONTACT US

It's a great journey with you,

Have a fantastic day

from IOVRVF family

Missing out on IOVRVF emails? Be sure to add us to your primary inbox.
This email was sent by IOVRVF

( Plot No.3, 2nd Floor, Parwana Road, Pitampura Delhi-110034, India).
If you don't want to receive this type of email in the future, please unsubscribe.

`

this is the html content

close2 commented 1 year ago

Can you please enable debugging and post the output here. Please remove sensitive information!

    Logger.root.level = Level.ALL;
    Logger.root.onRecord.listen((LogRecord rec) {
      print('${rec.level.name}: ${rec.time}: ${rec.message}');
    });
CodeRound commented 1 year ago

the gmail server blocked my html content.that's why my emails not land in inbox. i changed my html structure and now it work fine

close2 commented 1 year ago

thansk for reporting back!