0

I am integrating AWS with my php website. I know how to send a simple text email to user. But I want to send something formatted and images in that like this.

enter image description here

How can i send something like this using AWS(Amazon Web Service) ? Is there documentation available on how to send this kind of an email?

Any Help would be appreciated. Thanks In Advance.

keen
  • 3,001
  • 4
  • 34
  • 59
  • Guess your problem is not with AWS... you need to build your email with HTML and CSS (use table instead of div) and send it using php mail function or something more powerful like phpmailer or swiftmailer – Mauro Sep 20 '13 at 11:52
  • i was able to send it using AWS, but format which i am able to see in local is being changed in an email. – keen Sep 21 '13 at 09:47
  • checkout this http://stackoverflow.com/questions/18952620/css-not-working-in-email-sending-using-aws – Mayur Kataria Sep 23 '13 at 08:22

1 Answers1

0

I have done it using tables.

We can not use internal or external CSS in email. We can use the inline CSS. But in html email it's best to use tables.

keen
  • 3,001
  • 4
  • 34
  • 59