我有一个简单的SendGrid API设置,但我想知道如何在发送的电子邮件中包含附件。我将附件URL传递给$ _POST变量,因此可以返回完整路径,但不确定将其包含在我的设置中的哪个位置。
//
$i = 1; foreach ($cart as $download) {
$file . $i = $download['download'];
$file_encoded . $i = base64_encode(file_get_contents($file));
$attachment . $i = new SendGrid\Attachment();
$attachment . $i->setContent($file_encoded);
$attachment . $i->setType("application/zip");
$attachment . $i->setDisposition("attachment");
$attachment . $i->setFilename("test.zip");
$mail->addAttachment($attachment . $i);
i++;
}
// Set email confirmation settings
$email_subject = 'New order from ' . $user_details['first-name-billing'] . ' ' . $user_details['last-name-billing'] . ' via www.***.com';
$email_admin = '******@***.com'; // Client
$email_customer = $user_details['email'];
ob_start();
require_once './email-confirmation.php';
$email_body = ob_get_contents();
ob_end_clean();
// Send to confirmation to admin
if ($email_admin) {
send_email($email_admin, $email_admin, $email_subject, $email_body);
}
// Send confirmation to customer
if ($email_customer) {
send_email($email_admin, $email_customer, $email_subject, $email_body);
}
// SendGrid init
function send_email($from_email, $to_email, $subject, $body) {
global $sgAPIKey;
$from = new SendGrid\Email(null, $from_email);
$to = new SendGrid\Email(null, $to_email);
$content = new SendGrid\Content("text/html", $body);
$mail = new SendGrid\Mail($from, $subject, $to, $content);
$sg = new \SendGrid($sgAPIKey);
$response = $sg->client->mail()->send()->post($mail);
}
答案 0 :(得分:6)
使用hibernate.jdbc.batch_size
课程。可以在documentation:
SendGrid\Attachment
答案 1 :(得分:0)
$textMessageModel = new TextMessage;
$leadActivityModel = new LeadRecordActivity;
$leadsModel = new Leads;
$sentEmailModel = new SentEmail;
$userDetailsModel = new UserDetails;
$to = $request->input('to');
$filename = $request->input('filename');
$contentFile = $request->input('fileContent');
$from = $request->input('from');
$content = $request->input('content');
$subject = $request->input('subject');
$leadId = $leadsModel->fetchLeadEmailByUserIdData($to);
$fromName = $userDetailsModel->fetchUserDetails(Session::get('user_id'))->full_name;
$email = new \SendGrid\Mail\Mail();
$email->setFrom($from, $fromName);
$email->setSubject($subject);
$email->addTo($to, "");
$email->addContent(
"text/html", $content
);
// $file_encoded = (''.$contentFile.'');
foreach( $filename as $index => $code ) {
$email->addAttachment(
''.$contentFile[$index].'',
"application/json",
$filename[$index],
"attachment"
);
}
$sendgrid = new \SendGrid(env('SENDGRID_API_KEY'));
try {
$response = $sendgrid->send($email);
} catch (Exception $e) {
}