Created
September 10, 2012 16:16
-
-
Save kerinin/3691828 to your computer and use it in GitHub Desktop.
Muddle Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
</head> | |
<body style="width: 100% !important; margin: 0; padding: 0; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;"> | |
<table cellpadding="0" cellspacing="0" border="0" align="center"> | |
<tbody> | |
<tr> | |
<td valign="top"><h1 style="color: black !important;">Welcome to our AWESOME NEW WEB SERVICE!</h1></td> | |
</tr> | |
<tr> | |
<td valign="top"><p style="margin: 1em 0;">You should <a href="http://foo.com" style="color: blue;" target="_blank">check us out</a>.</p></td> | |
</tr> | |
</tbody> | |
</table> | |
<style type="text/css"> | |
/* Boilerplate CSS for BODY */ | |
#outlook a {padding:0;} | |
#backgroundTable {margin:0; padding:0; width:100% !important; line-height: 100% !important;} | |
.ExternalClass {width:100%;} | |
.ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td, .ExternalClass div {line-height: 100%;} | |
.image_fix {display:block;} | |
h1 a:active, h2 a:active, h3 a:active, h4 a:active, h5 a:active, h6 a:active {color: red !important;} | |
h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited {color: purple !important;} | |
@media only screen and (max-device-width: 480px) { | |
a[href^="tel"], a[href^="sms"] { | |
text-decoration: none; | |
color: blue; | |
pointer-events: none; | |
cursor: default; | |
} | |
.mobile_link a[href^="tel"], .mobile_link a[href^="sms"] { | |
text-decoration: default; | |
color: orange !important; | |
pointer-events: auto; | |
cursor: default; | |
} | |
} | |
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) { | |
a[href^="tel"], a[href^="sms"] { | |
text-decoration: none; | |
color: blue; | |
pointer-events: none; | |
cursor: default; | |
} | |
.mobile_link a[href^="tel"], .mobile_link a[href^="sms"] { | |
text-decoration: default; | |
color: orange !important; | |
pointer-events: auto; | |
cursor: default; | |
} | |
} | |
</style> | |
<style type="text/css"> | |
body { width: 100% !important; -webkit-text-size-adjust: 100% !important; -ms-text-size-adjust: 100% !important; margin: 0 !important; padding: 0 !important; } | |
img { outline: none !important; text-decoration: none !important; -ms-interpolation-mode: bicubic !important; } | |
</style> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<table> | |
<tbody> | |
<tr> | |
<td><h1>Welcome to our AWESOME NEW WEB SERVICE!</h1></td> | |
</tr> | |
<tr> | |
<td><p>You should come <a href="http://foo.com">check us out</a>.</p></td> | |
</tr> | |
</tbody> | |
</table> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyMailer < ActionMailer::Base | |
def make_it_so(recipient) | |
mail( | |
:to => recipient, | |
:from => "Picard <[email protected]>", | |
:subject => "Welcome to our AWESOME NEW WEB SERVICE!" | |
) do |format| | |
format.html { Muddle.parse( render ) } | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment