✉️

Email yourself with console.email

console.email

Email yourself like you log to the console:

console.email("helllo world")

Add a subject line as the second argument:

console.email({foo: "helllo world"}, "Subject line")

Email yourself HTML:

console.email({html: "<h1>hello world</h1>"})

The subject line can also be passed as a named parameter:

console.email({html: "<h1>hello world</h1>", subject: "hello from val town!!"})