문제

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