(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf
:
<?php | |
$list_id = 37485; | |
$type = 'dirty';//it can be 'clean' OR 'unknown' | |
$url = 'https://api.listclean.xyz/v1/downloads/' . $list_id . '/' . $type . '?X-Auth-Token=' . YOUR_API_KEY; | |
$filename = 'download_dirty.csv'; | |
if (file_put_contents($filename, file_get_contents($url))) { |
<?php | |
try{ | |
$url = "https://api.listclean.xyz/v1/"; | |
$endpoint = 'verify/email/'; | |
$api_key = YOUR_API_KEY; | |
var nodemailer = require('nodemailer'); | |
//below var smtpTransport not required for Nodemailer version equal or below v0.7.1 | |
var smtpTransport = require("nodemailer-smtp-transport"); | |
// Create a SMTP transport object | |
var transport = nodemailer.createTransport(smtpTransport( { | |
host: "smtp.pepipost.com", | |
port: 2525, | |
auth: { | |
user: "yoursmtpusername", |
<?php | |
/** | |
CREATE TABLE `invitees` ( | |
`email` varchar(255) NOT NULL, | |
`name` varchar(255) NOT NULL, | |
`sent` tinyint(1) NOT NULL DEFAULT '0', | |
`remarks` text NOT NULL, | |
`group` varchar(15) DEFAULT NULL, | |
`lastname` varchar(255) DEFAULT NULL, |
<?php | |
/** | |
Usage: | |
IpAuth::doAuth(array( | |
'xxx.xxx.xxx.* ', | |
'yyy.yyy.yyy.* ', | |
'aaa.bbb.ccc.0/19', | |
'a.b.c.d', | |
)); |
<?php | |
/** | |
* Steps to install Mandrill SDK | |
* curl -s http://getcomposer.org/installer | php | |
* php composer.phar require mandrill/mandrill | |
* Edit | |
* vendor/mandrill/mandrill/src/Mandrill.php | |
* //public $root = 'https://mandrillapp.com/api/1.0'; | |
* public $root = 'https://api.pepipost.com/api/1.0'; | |
*/ |
--- | |
swagger: "2.0" | |
info: | |
description: "This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters." | |
version: "1.0.0" | |
title: "Swagger Petstore" | |
termsOfService: "http://swagger.io/terms/" | |
contact: | |
email: "[email protected]" | |
license: |
https://api.pepipost.com/api/mail.send.json? | |
&api_key=yourapikey | |
&to[][email protected] | |
&toname[]=Destination | |
&[email protected] | |
&ccname=CCDestination | |
&[email protected] | |
&bccname=BCCDestination | |
&subject=Example_Subject | |
&text=testingtextbody |
{"message":"ERROR","errorcode": "0" ,"errormessage":""} |