I have a site and wanted to send a mailer which is Responsive as some of the users are using the mobile to see their mailer.
People see the mailers in Gmail / Yahoo, etc.
Is there any possible way to do so as the mediaqueries are not supported in Mailers.
Pls help needed.
Look at this Github repo: https://github.com/philwareham/responsive-email In the index.html you will find enough comments to create your own responsive email template
Yes, there are things you can do to create a somewhat responsive email template even when media queries are not supported.
Take a look at this boilerplate responsive email template to get started.
For the email clients where media queries are supported you can use them. For Gmail you can instead do things like scale an image banner to be 100% width of the table or div it's in.
An example of CSS for scaling an image without media queries:
width: 100% !important; -ms-interpolation-mode: bicubic; height: auto !important;
For your tables you can use techniques like max-width: 600px; width: 100%;
to help keep them responsive, but with a maximum size for the desktop.
Hope that helps get you going.