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
| <!DOCTYPE html> | |
| <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office"> | |
| <head> | |
| {{Standard Meta and Head}} | |
| {{Standard Litmus Brand CSS Styles}} | |
| <!--mobile styles--> | |
| {{Standard Mobile CSS Styles}} |
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
| <!DOCTYPE html> | |
| <html xmlns="http://www.w3.org/1999/xhtml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:v="urn:schemas-microsoft-com:vml"> | |
| <head><meta name="robots" content="noindex, nofollow"/><meta name="referrer" content="no-referrer"/> | |
| <title> Bloomingdale's </title> | |
| <!--[if !mso]><!-- --> | |
| <meta content="IE=edge" http-equiv="X-UA-Compatible"> | |
| <!--<![endif]--> | |
| <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> | |
| <meta content="width=device-width, initial-scale=1" name="viewport"> |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script type="text/javascript"> | |
| function redirect() { | |
| var random = Math.floor(Math.random() * Math.floor(5)) + 1; // random number between 1 and 5 | |
| var number = random*100; // just make this bigger for this example only so placeholder image is reasonable | |
| var image = "http://via.placeholder.com/" + number + ".png"; | |
| window.location.replace(image); | |
| } |
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
| ### Keybase proof | |
| I hereby claim: | |
| * I am brendanc on github. | |
| * I am brendanc (https://keybase.io/brendanc) on keybase. | |
| * I have a public key whose fingerprint is 264C CA7B 7A13 FE2F 937D 668F 672C 019D 5CD4 5729 | |
| To claim this, I am signing this object: |
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
| import requests | |
| from bs4 import BeautifulSoup | |
| import smtplib | |
| import time | |
| from email.mime.multipart import MIMEMultipart | |
| from email.mime.text import MIMEText | |
| ACCOUNT_KEY = 'backend' | |
| USERNAME = '[email protected]' | |
| PASSWORD = '***' |
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
| #!/bin/bash | |
| sed 's/litmusapp/iphone5s/g' 'SingleEmailTestingApp.json' > temp-test.json;curl -i -u username:password -X POST https://previews-api.ltimus.com/api/v1/EmailTests -H "Accept: application/json" -H "Content-Type: application/json" --data @temp-test.json |
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
| require 'httparty' | |
| class LitmusTest | |
| include HTTParty | |
| base_uri('https://api.litmus.com/v2') | |
| basic_auth('<YOUR API KEY>', 'x') | |
| headers({'Content-Type' => 'application/json'}) | |
| def self.create(subject, body) | |
| post('/emails', :body => {:email => {:name => "#{subject} @ #{Time.now.to_s(:short)}", :subject => subject, :body => body, :client_ids => self.client_ids}}.to_json) |
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
| OOOOOOOOOOO | |
| OOOOOOOOOOOOOOOOOOO | |
| OOOOOO OOOOOOOOO OOOOOO | |
| OOOOOO OOOOO OOOOOO | |
| OOOOOOOO # OOOOO # OOOOOOOO | |
| OOOOOOOOOO OOOOOOO OOOOOOOOOO | |
| OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO | |
| OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO | |
| OOOO OOOOOOOOOOOOOOOOOOOOOOOOO OOOO | |
| OOOO OOOOOOOOOOOOOOOOOOOOOOO OOOO |
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
| /* | |
| As of version 1.1.2, Propane will load and execute the contents of | |
| ~/Library/Application Support/Propane/unsupported/caveatPatchor.js | |
| immediately following the execution of its own enhancer.js file. | |
| You can use this mechanism to add your own customizations to Campfire | |
| in Propane. | |
| Below you'll find two customization examples. |
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
| #!/usr/bin/perl | |
| use 5.006; | |
| use SOAP::Lite 'trace', 'debug' ; | |
| # Sample code to create a new email test using Litmus' Reseller Api | |
| # This sample uses SOAP:Lite, available at: http://www.soaplite.com/ | |
| $api_key = "api-key"; |
NewerOlder