Created
December 10, 2015 16:10
-
-
Save mavci/01576490784aee64a1bd to your computer and use it in GitHub Desktop.
IMAP Example (Laravel)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$mailbox = new PhpImap\Mailbox('{imap.yandex.com.tr:993/imap/ssl}INBOX', '[email protected]', '******', __DIR__); | |
$mails = array(); | |
$mailsIds = $mailbox->searchMailBox('UNSEEN'); | |
if( ! $mailsIds) | |
die('Mailbox is empty'); | |
foreach ($mailsIds as $mail_id) | |
{ | |
$mail = $mailbox->getMail($mail_id); | |
$subject = $mail->subject; | |
$name = $mail->fromName; | |
$email = $mail->fromAddress; | |
$attachments = $mail->getAttachments(); | |
foreach ($attachments as $attachment) | |
{ | |
$mail = File::get($attachment->filePath); | |
break; | |
} | |
Mail::raw('Mailiniz bize ulaştı ' . $mail, function($message) use ($email) | |
{ | |
$message->to($email)->subject('Cevap maili'); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment