- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 AWS S3 存储桶,我让 AWS SES 将原始电子邮件移至该存储桶。我的问题是默认情况下这些电子邮件不是公开的,我需要一个 php 脚本,它可以从这个 S3 存储桶中获取原始文件并将其放入 mysql 中,这样我就无需手动将文件标记为公开在文件夹中。
那么使用我使用 IAM Key 和 IAM Secret 的下面的代码,我怎样才能让我的下面的脚本加载到具有正确权限的 AWS 存储桶中,以便能够获取原始文件?
//mysql connection
$servername = "***>rds.amazonaws.com";
$username = "****";
$password ="***";
$databasename ="***";
$rightnowdatetimeis = date('Y-m-d H:i:s');
$rightnowdateis = date('Y-m-d');
$con = mysqli_connect("$servername","$username","$password","$databasename");
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
//load the php mime parse library
require_once __DIR__.'/vendor/autoload.php';
$Parser = new PhpMimeMailParser\Parser();
//Include the AWS SDK using the Composer autoloader.
require 'awssdk/aws-autoloader.php';
use Aws\S3\S3Client;
use Aws\S3\Exception\S3Exception;
// AWS Info
$bucketName = 'pipedemail';
$IAM_KEY = '****';
$IAM_SECRET = '***';
// Connect to AWS
try {
// You may need to change the region. It will say in the URL when the bucket is open
// and on creation. us-east-2 is Ohio, us-east-1 is North Virgina
$s3 = S3Client::factory(
array(
'credentials' => array(
'key' => $IAM_KEY,
'secret' => $IAM_SECRET
),
'version' => 'latest',
'region' => 'us-east-1'
)
);
} catch (Exception $e) {
// We use a die, so if this fails. It stops here. Typically this is a REST call so this would
// return a json object.
die("Error: " . $e->getMessage());
}
// Use the high-level iterators (returns ALL of your objects).
$objects = $s3->getIterator('ListObjects', array('Bucket' => $bucketName));
foreach ($objects as $object)
{
$objectkey = $object['Key'];
// Get the object
$result = $s3->getObject(array(
'Bucket' => $bucketName,
'Key' => $objectkey
));
//lets get the raw email file to parse it
//$Parser->setText($result['Body']);
//echo "$objectkey";
$path = "*****";
//lets get the raw email file to parse it
$Parser->setText(file_get_contents($path));
// Once we've indicated where to find the mail, we can parse out the data
//$to = $Parser->getHeader('to'); // "test" <test@example.com>, "test2" <test2@example.com>
$addressesTo = $Parser->getAddresses('to'); //Return an array : [[test, test@example.com, false],[test2, test2@example.com, false]]
$tobrand = $addressesTo[0]['address'];
$to_brand_domainname = explode("@", "$tobrand", 2)[1];
//lets get the brandid based on the to domain name
$brandsql = mysqli_query($con, "SELECT brandid FROM brands WHERE branddomainname='$to_brand_domainname' LIMIT 1");
$brandrow = mysqli_fetch_array($brandsql);
$brandid = $brandrow['brandid'];
$from = $Parser->getHeader('from'); // John Smith
//lets break the full name into a lastname and firstname veriable
$namepieces = explode(" ", $from);
$first_name = $namepieces[0];
$last_name = $namepieces[1];
$addressesFrom = $Parser->getAddresses('from'); //Return an array : test, test@example.com, false
$fromname = $addressesFrom[0]['display']; //not sure what this returns yet
$fromemail = $addressesFrom[0]['address'];
$subject = $Parser->getHeader('subject');
//html of email body
$html_emailbody = $Parser->getMessageBody('html');
// $htmlEmbedded = $Parser->getMessageBody('htmlEmbedded'); //HTML Body included data
//First lets see if this email address exists within the database
$emailsql = mysqli_query($con, "SELECT cid FROM customer_profiles WHERE email_address='$fromemail' LIMIT 1");
$erow = mysqli_fetch_assoc($emailsql);
$cid = $erow['cid'];
//if customer does not exists
if($cid < 1)
{
$customsql = mysqli_query($con, "INSERT into customer_profiles(first_name, last_name, email_address, last_contact_date)
VALUES('$first_name','$last_name','$fromemail','$rightnowdateis')");
$cid = mysqli_insert_id($con);
}
//create the support issue
$sql = mysqli_query($con, "INSERT into product_issues(cid, date_created, brandid) VALUES('$cid','$rightnowdatetimeis','$brandid')");
$issueid = mysqli_insert_id($con);
mysqli_query($con, "INSERT into customer_notes(cid, date_written, note_body, issueid, note_type, brandid, note_subject, note_status)
VALUES('$cid','$rightnowdatetimeis','$html_emailbody','$issueid','email','$brandid','$subject','unread')");
$noteid = mysqli_insert_id($con);
//Pass in a writeable path to save attachments
$attach_dir = 'email_attachments/'; // Be sure to include the trailing slash
//$include_inline = false; // Optional argument to include inline attachments (default: true)
//$Parser->saveAttachments($attach_dir [,$include_inline]);
// $Parser->saveAttachments($attach_dir);
// Get an array of Attachment items from $Parser
// $attachments = $Parser->getAttachments([$include_inline]);
// Loop through all the Attachments
// if(count($attachments) > 0)
// {
// foreach ($attachments as $attachment)
// {
// $fileattachmentname = $attachment->getFilename();
// $attachment_filetype = $attachment->getContentType();
//save file attachement name to database
// mysqli_query($con, "INSERT into email_attachments(attachment_name, attachment_filetype, cid, noteid, issueid)
// VALUES('$fileattachmentname','$attachment_filetype','$cid','$noteid','$issueid')");
//echo 'Filename : '.$attachment->getFilename().'<br />'; // logo.jpg
//echo 'Filesize : '.filesize($attach_dir.$attachment->getFilename()).'<br />'; // 1000
//echo 'Filetype : '.$attachment->getContentType().'<br />'; // image/jpeg
//echo 'MIME part string : '.$attachment->getMimePartStr().'<br />'; // (the whole MIME part of the attachment)
// }
// }
//now lets delete the object since we already took the email and saved it into mysql
$s3->deleteObject(array('Bucket' => $bucketName, 'Key' => $objectkey));
}
最佳答案
如果您希望对您的存储桶进行公共(public)读取访问,那么此策略将执行此操作
{
"Version":"2012-10-17",
"Statement":[
{
"Sid":"AddPerm",
"Effect":"Allow",
"Principal": "*",
"Action":["s3:GetObject"],
"Resource":["arn:aws:s3:::examplebucket/*"]
}
]
}
但是您想要对电子邮件执行的操作是借助 ACL 来完成对存储桶对象的公共(public)读取访问,即 Access Control Lists ,并且您不需要授予对存储桶的公共(public)读取权限,因为您的案例需要对对象(即仅电子邮件)的公共(public)读取权限。
在将对象存储到 s3 时,您可以在代码中将该对象的 ACL 设置为 public-read 以完成您的工作
使用 ACL 上传具有公共(public)读取权限的图像的 python 示例
import boto3
s3client=boto3.client('s3')
s3client.upload_file('filename', 'bucket-name', ktr,ExtraArgs={'ACL': 'public-read'})
您可以在此链接上了解有关 ACL 的更多信息
https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html
关于amazon-web-services - AWS S3 公开添加的任何新文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50799764/
对于在 AWS 云中配置基础设施,我们目前使用从 ansible 角色调用的云形成模板,但我们发现在增加基础设施的规模后,此代码在 GitHub 中变得非结构化或未模块化 Github上有意大利面条式
我一直在阅读documentation for AWS Cloudwatch events至trigger AWS Batch我不知道如何从 cloudwatch 事件触发 aws 批处理: 在 aw
我正在尝试使用入口控制器安装我的CA证书。我正在遵循这份指南。Https://docs.aws.amazon.com/eks/latest/userguide/aws-load-balancer-co
如何使用 aws cloudformation 或 aws cdk 设置 aws aurora mysql 表? 在我的设置中,我有一个使用 lambda 实现各种微服务的无服务器应用程序。数据库是无
我看到了各种使用 AWS CDK 的示例,其中一些使用 aws-cdk-lib,另一些使用 @aws-cdk/core。这些之间有什么区别,什么时候应该使用一个或另一个? 最佳答案 aws-cdk-l
我看到了各种使用 AWS CDK 的示例,其中一些使用 aws-cdk-lib,另一些使用 @aws-cdk/core。这些之间有什么区别,什么时候应该使用一个或另一个? 最佳答案 aws-cdk-l
我在 cdk 研讨会上建立了一个小的 lambda 函数 here .我正在用 typescript 编写 lambda 函数,通过管道进行部署,该管道创建了一个包含 lambda 函数的云形成堆栈。
我刚刚开始使用 AWS 服务,尤其是 AWS Lambda。有没有办法从 Lambda 代码 (Java) 中使用 AWS KMS 服务。我想使用 KMS 来解密加密的外化(从属性读取) secret
CFN 模板是否可以根据参数向 ALB 添加一些特定的安全组? 我遇到了两个安全组添加到 ALB 的情况: ALB Type: AWS::ElasticLoadBalancingV2::LoadB
例如,我有一个主要公司 AWS 账户,其安全组为 xxxxx。现在我有了我的个人 aws 安全组-yyyyy。这些帐户根本不相关。我可以将接受组-yyyyy 添加到组-xxxxx 中,从而允许我的
我有一个 Lambda 函数,它有多个 MSK 触发器配置 - 每个都针对不同的主题。 如果 Lambda 的输入 ( MSKEvent ) 可以包含多个不同的主题,则未在官方文档中找到任何信息。 官
在 AWS Glue 中创建 JDBC 连接时,有什么方法可以从 AWS secret manager 获取密码而不是手动硬编码吗? 最佳答案 我必须在我当前的项目中这样做才能连接到 Cassandr
谁能告诉我: aws-sdk/clients/appsync , 和 aws-appsync 根据文档,aws-sdk/clients/appsync使用是因为只包括 aws-sdk当我们只需要 ap
我不小心删除了我的放大前端并创建了一个新前端。如何将现有的放大后端导入新创建的放大应用项目文件夹? 我按照后端标签上的步骤操作 amplify init --appId(“您的新AMPLIFY APP
我正在使用 Java Sdk 创建粘合作业。它只有两个必需的参数 Command 和 Glue 版本。 但我需要使用自动脚本生成来创建工作。正如我们可以从控制台做的那样,我们添加数据源、AWS Glu
目前我正在使用 AWS Glue 作业将数据加载到 RedShift,但在加载之后我需要运行一些可能使用 AWS Lambda 函数的数据清理任务。有没有办法在 Glue 作业结束时触发 Lambda
简单的 aws lambda 和 aws lambda@edge 有什么区别? 最佳答案 Lambda 根据某些触发器执行函数。 Lambda 的用例非常广泛,并且与许多 AWS 服务高度集成。您甚至
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 9 个月前。 社区 9
我正在尝试使用 Python 使用 AWS-CDK 创建托管广告。以下是错误,从 JavaScriptError(resp.stack) 引发 JSIIError(resp.error)jsii.er
这两个包似乎在很大程度上做同样的事情?这两个包之间的预期区别是什么,我应该使用哪个包? 最佳答案 Pipelines 是较新的 --experimental-- (编辑:它不再在 Experiment
我是一名优秀的程序员,十分优秀!