Вход Регистрация
Файл: vendor/laravel/framework/src/Illuminate/Mail/Transport/ResendTransport.php
Строк: 224
<?php

namespace IlluminateMailTransport;

use 
Exception;
use 
ResendContractsClient;
use 
SymfonyComponentHttpFoundationResponse;
use 
SymfonyComponentMailerEnvelope;
use 
SymfonyComponentMailerExceptionTransportException;
use 
SymfonyComponentMailerSentMessage;
use 
SymfonyComponentMailerTransportAbstractTransport;
use 
SymfonyComponentMimeAddress;
use 
SymfonyComponentMimeEmail;
use 
SymfonyComponentMimeMessageConverter;

/*
MIT License

Copyright (c) 2023 Jayan Ratna

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
class ResendTransport extends AbstractTransport
{
    
/**
     * Create a new Resend transport instance.
     */
    
public function __construct(protected Client $resend)
    {
        
parent::__construct();
    }

    
/**
     * {@inheritDoc}
     *
     * @throws SymfonyComponentMailerExceptionTransportException
     * @throws Throwable
     */
    
protected function doSend(SentMessage $message): void
    
{
        
$email MessageConverter::toEmail($message->getOriginalMessage());

        
$envelope $message->getEnvelope();

        
$headers = [];

        
$headersToBypass = ['from''to''cc''bcc''reply-to''sender''subject''content-type'];

        foreach (
$email->getHeaders()->all() as $name => $header) {
            if (
in_array($name$headersToBypasstrue)) {
                continue;
            }

            
$headers[$header->getName()] = $header->getBodyAsString();
        }

        
$attachments = [];

        if (
$email->getAttachments()) {
            foreach (
$email->getAttachments() as $attachment) {
                
$attachmentHeaders $attachment->getPreparedHeaders();
                
$contentType $attachmentHeaders->get('Content-Type')->getBody();
                
$disposition $attachmentHeaders->getHeaderBody('Content-Disposition');
                
$filename $attachmentHeaders->getHeaderParameter('Content-Disposition''filename');

                if (
$contentType == 'text/calendar') {
                    
$content $attachment->getBody();
                } else {
                    
$content str_replace("rn"''$attachment->bodyToString());
                }

                
$item = [
                    
'content_type' => $contentType,
                    
'content' => $content,
                    
'filename' => $filename,
                ];

                if (
$disposition === 'inline') {
                    
$item['content_id'] = $attachment->hasContentId() ? $attachment->getContentId() : $filename;
                }

                
$attachments[] = $item;
            }
        }

        try {
            
$result $this->resend->emails->send([
                
'from' => $envelope->getSender()->toString(),
                
'to' => $this->stringifyAddresses($this->getRecipients($email$envelope)),
                
'cc' => $this->stringifyAddresses($email->getCc()),
                
'bcc' => $this->stringifyAddresses($email->getBcc()),
                
'reply_to' => $this->stringifyAddresses($email->getReplyTo()),
                
'headers' => $headers,
                
'subject' => $email->getSubject(),
                
'html' => $email->getHtmlBody(),
                
'text' => $email->getTextBody(),
                
'attachments' => $attachments,
            ]);

            
throw_if(isset($result['statusCode']) && $result['statusCode'] != Response::HTTP_OKException::class, $result['message']);
        } catch (
Exception $exception) {
            throw new 
TransportException(
                
sprintf('Request to Resend API failed. Reason: %s.'$exception->getMessage()),
                
is_int($exception->getCode()) ? $exception->getCode() : 0,
                
$exception
            
);
        }

        
$messageId $result->id;

        
$email->getHeaders()->addHeader('X-Resend-Email-ID'$messageId);
    }

    
/**
     * Get the recipients without CC or BCC.
     */
    
protected function getRecipients(Email $emailEnvelope $envelope): array
    {
        return 
array_filter($envelope->getRecipients(), function (Address $address) use ($email) {
            return 
in_array($addressarray_merge($email->getCc(), $email->getBcc()), true) === false;
        });
    }

    
/**
     * Get the string representation of the transport.
     */
    
public function __toString(): string
    
{
        return 
'resend';
    }
}
Онлайн: 0
Реклама