Skip to content

Instantly share code, notes, and snippets.

@sandys
Created January 23, 2013 10:33

Revisions

  1. Sandeep Srinivasa created this gist Jan 23, 2013.
    52 changes: 52 additions & 0 deletions email_attachments_ses_simple.php
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,52 @@
    <?php
    require("./amazon-sdk/sdk.class.php");
    // on ubuntu - this script can be run using php5-cli and php5-curl

    //Provide the Key and Secret keys from amazon here.
    $AWS_KEY = "kkk";
    $AWS_SECRET_KEY = "kkkk+xKcdkB";
    //certificate_authority true means will read CA of amazon sdk and false means will read CA of OS
    $CA = true;

    $amazonSes = new AmazonSES(array( "key" => $AWS_KEY, "secret" => $AWS_SECRET_KEY, "certificate_authority" => $CA ));

    $dest = "[email protected]";
    $src = "[email protected]";
    $message= "To: ".$dest."\n";
    $message.= "From: ".$src."\n";
    $message.= "Subject: Example SES mail (raw)\n";
    $message.= "MIME-Version: 1.0\n";
    $message.= 'Content-Type: multipart/mixed; boundary="aRandomString_with_signs_or_9879497q8w7r8number"';
    $message.= "\n\n";
    $message.= "--aRandomString_with_signs_or_9879497q8w7r8number\n";
    $message.= 'Content-Type: text/plain; charset="utf-8"';
    $message.= "\n";
    $message.= "Content-Transfer-Encoding: 7bit\n";
    $message.= "Content-Disposition: inline\n";
    $message.= "\n";
    $message.= "Dear new tester,\n\n";
    $message.= "Attached is the file you requested.\n";
    $message.= "\n\n";
    $message.= "--aRandomString_with_signs_or_9879497q8w7r8number\n";
    $message.= "Content-ID: \<[email protected]_IS_ADDED\>\n";
    $message.= 'Content-Type: application/zip; name="shell.zip"';
    $message.= "\n";
    $message.= "Content-Transfer-Encoding: base64\n";
    $message.= 'Content-Disposition: attachment; filename="shell.zip"';
    $message.= "\n";
    $message.= base64_encode(file_get_contents("/tmp/gnome_shell___switch_by_half_left-d4yj2qz.zip"));
    $message.= "\n";
    $message.= "--aRandomString_with_signs_or_9879497q8w7r8number--\n";

    $response = $amazonSes->send_raw_email(array(
    'Data'=> base64_encode($message)),
    array('Source'=>$src, 'Destinations'=> $dest));
    /*$response = $amazonSes->send_raw_email($mail_array);*/
    print_r($response);

    if (!$response->isOK()) {
    echo 'Not Sent';
    }else {
    echo 'Sent';
    }
    ?>