Questions tagged [inky]

For questions regarding the email templating language Inky.

Inky is part of the Zurb-Email-Stack, and converts simple HTML tags into the complex table HTML, that is required for emails.

Github: https://github.com/foundation/inky Zurb Email Stack: https://get.foundation/emails/zurb-stack.html

20 questions
4
votes
1 answer

gulp task that dynamically create folder with name based on file name

I have the following gulp task that is currently not working. gulp.task('emails', function() { gulp.src('views/emails/src/**/*.html') .pipe(inky()) .pipe(gulp.dest('views/emails/dist/'+debug()+"/html.ejs")); }); I would like to iterate…
TWilly
  • 4,863
  • 3
  • 43
  • 73
3
votes
1 answer

VML nested image backgrounds for Outlook

Is it possible to have nested background images using the technique of vml v:rect and v:fill ? It seems like the nested v:fill will also try to fill the first declared v:rect and this is completely messing up my layout Example of what I'm trying to…
Cyril Duchon-Doris
  • 12,964
  • 9
  • 77
  • 164
2
votes
2 answers

HTML email button alignment in Outlook

I'm having some issues aligning the call to action buttons in a HTML email I am building for a client. The buttons are appearing off to the left and not filled correctly. This is how they appear in my browser and most email clients: And this is how…
Burgi
  • 421
  • 8
  • 24
1
vote
1 answer

I want to run a bunch of terminal commands consecutively, and repeatedly, on a raspberry pi

I have a raspberry pi 4 with a inkyWHAT display, I've managed to get the display showing my own images. What I need help with is to run the following commands one after the other, at present I paste each line in one at a time: from PIL import…
tjcss
  • 856
  • 1
  • 12
  • 33
1
vote
1 answer

How to put a button (and link) inside an .inky Action Mailer template?

This is probably really simple, but how can I make this link_to <%= link_to("Send " + @user.first_name + " a message" , @conversation) %> into a button in an .inky file? Note: here is how to make a button in an .inky file (I just don't know how to…
stevec
  • 41,291
  • 27
  • 223
  • 311
1
vote
1 answer

Automatically generate plain text emails from html emails when using inky?

I watched a few online tutorials and set up inky and premailer to give styling to emails in an organised way, and am very happy with this set up. premailer gem should automatically generate the text.erb email based on the html.erb email. According…
stevec
  • 41,291
  • 27
  • 223
  • 311
1
vote
0 answers

Sending Zurb foundation emails (inky) with server

I need to make custom e-mails where the server parses the inky e-mail and assigns the variables. For example: hi {{user.name}}. Problem is if you use handlebars notation for the variables, the panini package of zurb foundation emails project will…
woutvdd
  • 771
  • 1
  • 9
  • 20
1
vote
3 answers

How can I use jQuery to convert

Hii,this is just an example
change to Hii, only tag will be change
Rivon
  • 37
  • 1
  • 2
1
vote
1 answer

What approaches are there to give an element padding and/or margin using Foundation For Emails 2 and its templating language Inky?

What approaches are there to give an element padding and/or margin using Foundation For Emails 2 and its templating language Inky? I have found two ways to add a padding to an element coding an email (that works in most mail clients): give a td…
6754534367
  • 5,123
  • 4
  • 17
  • 24
0
votes
0 answers

Adafruit MagTag: Dither a jpg from placekitten.com and display on MagTag

Pimoroni has an example that grabs a jpg online and displays it on one of their Inky e-ink displays. I am wondering if it is possible to do the same thing with an Adafruit MagTag using CircuitPython. In the latest version of CircuitPython, there are…
0
votes
1 answer

Zurb foundation for emails: Hiding some containers for small devices

when I was questioning on Stackoverflow how to solve my problem with mjml.io and after some research I found that there is also ZURB Foundation emails which should work perfectly on Outlook 2003 (as mentioned on their website). So I tried to create…
Joergi
  • 1,527
  • 3
  • 39
  • 82
0
votes
0 answers

Why is my foundation email width expanding to 100%?

My email is basically two images side-by-side with a cta button underneath. On mobile the email is fine. On desktop the second set of images and button width expands to 100%. The inky code looks fine to me. Am I placing the button in the wrong…
0
votes
0 answers

FOundation emails --- thunderbird rwd

I have created responsive email message and it works but the problem is on Thunderbird.When i go under the breakpoint all my columns looks like 100% of width but should be 50%. I add some screens view and my code. Please help ... screen 1 - correct…
0
votes
1 answer

Email markup losing responsiveness after forwarding the email

It is my first email mark up using Foundation for Emails.

Dear JJ,

it is your one time…

Ann
  • 772
  • 1
  • 9
  • 17
0
votes
1 answer

Foundation for emails: Add code after Inky and Inlining

I'm using foundation for emails 2. I'm looking to insert a piece of code into the final rendered email, after all the node tasks have run, specifically after the email has been inlined. As inlining breaks the particular snippet I'm looking to…
1
2