GithubHelp home page GithubHelp logo

Comments (4)

jmatembu avatar jmatembu commented on May 17, 2024 1

@abhiburk

The documentation shows you the methods you need to get attachments from an email. Here is some code example assuming you have already retrieved your emails and looping from each to get attachments.

if ($email->hasAttachments()) {
    // Email has attachments
    $attachments = $email->getAttachments()->map(function ($attachment) {
        // Save each attachment to your preferred location
        return $attachment->saveAttachmentTo('path/to/downloaded/attachments', 'filename', 'disk');
    });

    // You now have the paths to the downloaded files in the $attachments variable.
}

The methods availed to you by the package that I have used in the code above are: hasAttachments(), getAttachments(), saveAttachmentTo($path, $filename, $disk)

from laravel-gmail.

abhiburk avatar abhiburk commented on May 17, 2024

Okay the one which you share is extremely easy and I gonna replace it with mine one. How I did was

$message = LaravelGmail::message()->get( $gmailID );
        $parts=($message->payload->parts);
        foreach ( $parts as $part ) {
			$body = $part->getBody();
			if ( $body->getAttachmentId() ) {
				$attachment = ( new Attachment( $gmailID, $part ) );
                $attach['attachment'][] = ['fileName'=>$attachment->getFileName(),
                'size'=> $attachment->getSize(),
                'data'=>$attachment->getData()];
			}
        }

My Bad :-P

By the way thank you this package is very helpful.

from laravel-gmail.

dacastro4 avatar dacastro4 commented on May 17, 2024

@jmatembu thanks for the help!
@abhiburk I'm glad that you find it helpful.

from laravel-gmail.

abhiburk avatar abhiburk commented on May 17, 2024

Yes it helped me.
Also I wanted to let you know you can add search function in Message class as their is only in: option available in it. I added it in my code. Hope this helps you.

from laravel-gmail.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.