سؤال

I need to implement a print option for the news letter i send through campaigmonitor.If its possible can any one suggest the idea behind this?

هل كانت مفيدة؟

المحلول

you can paste html code in your document which will provide an option for printing

<input type="button"  onClick="window.print()" value="Print This Page"/>  

نصائح أخرى

If you can add arbitrary HTML/JavaScript, you are looking for <a href="javascript:window.print()">print this</a> or similar. Otherwise, you can advise the user to press CTRL+P, which should work on most systems.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top