-1

I am trying to create one email template have one footer and wants to fix in Bottom of the email template, Is there any way? Appreciate in advance.

Brad Larson
  • 170,088
  • 45
  • 397
  • 571
Alpesh
  • 19
  • 5

1 Answers1

2

A CSS answer. You 'build up' from this corner. An imported image may help with looks. I used the hash tag to make it a division class. Only a division can have a z-index assigned to it.

<style>
#e_mail_template {position:fixed;left:0;bottom:0;z-index:1000;}
</style>

NOTE: Read Syfers comment: "You can make it static on mobile devices but not on all email clients. It will not work on some email clients like Outlook."

Also note that a fixed position with a z-index of 1000 will place this (and the divisions contents) above all other objects.

  • 1
    This will not work on some email clients like Outlook. – Syfer Feb 07 '18 at 00:32
  • 1
    @Syfer. The OP did not mention Outlook as a requirement. But any email can emulate HTML format unless it is forced to be text only. –  Feb 07 '18 at 01:00
  • Its not about requirement, when an answer is given you can give a disclaimer that it will not work on all email clients. Emails are nothing like Web, no standards and buggy support for everything all over. – Syfer Feb 07 '18 at 01:02
  • You can still add it to your answer from my comment to OP. Its better to give tips then to down vote ;-) – Syfer Feb 07 '18 at 01:07