本文整理汇总了PHP中Illuminate\Contracts\Mail\Mailer类的典型用法代码示例。如果您正苦于以下问题:PHP Mailer类的具体用法?PHP Mailer怎么用?PHP Mailer使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Mailer类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: handle
/**
* Execute the job.
*
* @return void
*/
public function handle(Mailer $mailer)
{
$data = ['title' => 'ChickenElectric-Xác nhận người dùng.', 'intro' => 'Cảm ơn bạn vì đã đăng ký làm thành viên của ChickenElectric. Chúng tôi sẽ gửi tới bạn các thông tin mới nhất về các bài viết. Để active tài khoản hãy truy cập vào đường link sau.', 'register_token' => $this->_user->register_token];
$mailer->send('email.auth.verify', $data, function ($message) {
$message->to($this->_user->email, 'doankhoi')->subject('ChickenElectric');
});
}
开发者ID:doankhoi,项目名称:Application,代码行数:12,代码来源:SendMail.php
示例2: handle
/**
* Execute the job.
*
* @return void
*/
public function handle(Mailer $mailer)
{
$data = ['title' => $this->attempt->user->name . ' invited you to attempt the ' . $this->attempt->challenge->title . ' challenge.', 'name' => $this->user->name, 'email' => $this->user->email, 'content' => null, 'url' => 'https://gamechalleng.es/notifications', 'url_text' => 'View Notifications'];
$mailer->send('emails.transactional', $data, function ($m) use($data) {
$m->to($data['email'], $data['name'])->subject($data['title']);
});
}
开发者ID:BrantWladichuk,项目名称:gamechalleng.es,代码行数:12,代码来源:SendUserAttemptInviteEmail.php
示例3: handle
/**
* Execute the job.
*
* @param Mailer $mailer
* @return void
*/
public function handle(Mailer $mailer)
{
echo 'Sending email.' . PHP_EOL;
if ($this->attempts() > 1) {
$this->delete();
}
$users = $this->getUsers($this->dir . '/userlist.xlsx');
$html = file_get_contents($this->dir . '/email.html');
foreach ($users as $index => $user) {
$index++;
if (!filter_var($user, FILTER_VALIDATE_EMAIL)) {
continue;
}
$mailer->send('laravel-sender::email.html', ['html' => $html], function ($m) use($user) {
$m->from($this->from, $this->fromTitle);
$m->to($user, null)->subject($this->title);
});
var_dump($user);
if ($index % 10 === 0) {
sleep(5);
}
}
/*
*/
echo 'end.' . PHP_EOL;
$this->delete();
}
开发者ID:cawakharkov,项目名称:laravel-sender,代码行数:33,代码来源:SendEmail.php
示例4: handle
/**
* Execute the job.
*
* @param Mailer $mailer
* @return void
*/
public function handle(Mailer $mailer)
{
$mailer->send('emails.verify', [], function ($message) {
$message->from(env('MAIL_FROM'), 'Easymanage.in');
$message->to($this->emailAddress)->subject('Please Verify Your Easymanage.in Account');
});
}
开发者ID:suchayj,项目名称:easymanage,代码行数:13,代码来源:SendVerificationEmail.php
示例5: handle
/**
* Execute the job.
*
* @return void
*/
public function handle(Mailer $mailer)
{
$teachers = $this->teachers;
foreach ($teachers as $teacher) {
$message = new TeacherMessage();
$message->sender_id = $this->sender_id;
$message->email = $this->email;
$message->sms = $this->sms;
$message->teacher_id = $teacher->id;
$data = ['content' => $this->email];
$attachments = $this->attachments;
if ($this->email) {
$mailer->send('teachers::emails.message', $data, function ($m) use($teacher, $attachments) {
$m->to($teacher->email, $teacher->name)->from(config('teachers.from_email'))->subject("subject");
if (!empty($attachments)) {
foreach ($attachments as $a) {
$m->attach($a);
}
}
});
$message->email_sent = 1;
}
if ($this->sms) {
$sms = new SmsGateway($this->sms, [$teacher->mobile]);
$result = $sms->send();
if ($result->getPushMessageResult()->PushMessageResult == 1) {
$message->sms_sent = 1;
}
}
$message->save();
}
event(new TeachersMessagesQueueFinished());
}
开发者ID:hisambahaa,项目名称:DARES,代码行数:38,代码来源:SendTeachersMessage.php
示例6: handle
/**
* Handler
*
* @param \Illuminate\Contracts\Mail\Mailer $mailer
* @param \Illuminate\Contracts\View\Factory $view
* @param \Illuminate\Contracts\Validation\Factory $validator
* @throws \Exception
* @return void
*/
public function handle(Mailer $mailer, Factory $view, Validator $validator)
{
$queue = $this->messageQueue;
$queue->status = 'in_processes';
$queue->save();
$queue->load('event', 'event.template');
$parameters = array_merge_recursive($queue->event->template->parameters, $queue->event->parameters, $queue->parameters);
$messageParameters = array_dot($this->getMessageParameters($validator, $parameters['message']));
$renderView = $queue->event->template->getRender($parameters['view']);
$mailer->send('message-sender::providers.plain', ['content' => $renderView], function ($message) use($parameters, $messageParameters) {
$message->from($messageParameters['from.address'], $messageParameters['from.name']);
$message->to($messageParameters['to.address'], $messageParameters['from.name']);
$message->subject($parameters['provider']['subject']);
if (isset($parameters['provider']['headers'])) {
$mailHeaders = $message->getSwiftMessage()->getHeaders();
foreach ($parameters['provider']['headers'] as $header) {
$mailHeaders->addTextHeader($header['name'], $header['value']);
}
}
});
if (count($mailer->failures()) > 0) {
throw new \Exception('Mail send failed.');
} else {
$queue->status = 'sent';
$queue->save();
}
}
开发者ID:malezha,项目名称:message-sender,代码行数:36,代码来源:EmailProvider.php
示例7: handle
/**
* Execute the job.
*
* @return void
*/
public function handle(Mailer $mailer)
{
$mailer->send('emails.invite', ['email' => $this->auth_user_email, 'name' => $this->auth_user_name], function ($message) {
$message->from($this->auth_user_email, $this->auth_user_name);
$message->to($this->email)->subject('Invite to join Invite');
});
}
开发者ID:vishnu-b,项目名称:invite,代码行数:12,代码来源:SendInviteEmail.php
示例8: handle
/**
* Execute the job.
*
* @return void
*/
public function handle(Mailer $mailer)
{
$this->inscription->load('colloque');
$annexes = $this->inscription->colloque->annexe;
// Generate annexes if any
if (empty($this->inscription->documents) && !empty($annexes)) {
$this->generator->setInscription($this->inscription)->generate($annexes);
}
$date = \Carbon\Carbon::now()->formatLocalized('%d %B %Y');
$title = 'Votre inscription sur publications-droit.ch';
$logo = 'facdroit.png';
$user = $this->inscription->user;
$annexes = $this->inscription->documents;
$data = ['title' => $title, 'logo' => $logo, 'concerne' => 'Inscription', 'annexes' => $this->inscription->colloque->annexe, 'inscription' => $this->inscription, 'date' => $date];
$mailer->send('emails.colloque.confirmation', $data, function ($message) use($user, $annexes) {
$email = $this->email ? $this->email : $user->email;
$message->to($email, $user->name)->subject('Confirmation d\'inscription');
if (!empty($annexes)) {
foreach ($annexes as $annexe) {
$message->attach($annexe['file'], array('as' => $annexe['name'], 'mime' => 'application/pdf'));
}
}
});
$this->inscription->send_at = date('Y-m-d');
$this->inscription->save();
}
开发者ID:abada,项目名称:webshop,代码行数:31,代码来源:SendConfirmationInscriptionEmail.php
示例9: handle
/**
* Execute the job.
*
* @param Mailer $mailer
* @return void
*/
public function handle(Mailer $mailer)
{
$data = ['title' => trans('front/verify.email-title'), 'intro' => trans('front/verify.email-intro'), 'link' => trans('front/verify.email-link'), 'confirmation_code' => $this->user->confirmation_code];
$mailer->send('emails.auth.verify', $data, function ($message) {
$message->to($this->user->email, $this->user->username)->subject(trans('front/verify.email-title'));
});
}
开发者ID:jhuhandha,项目名称:lblog,代码行数:13,代码来源:SendMail.php
示例10: handle
/**
* Execute the job.
*
* @return void
*/
public function handle(Mailer $mailer)
{
$mailer->send('emails.reminder', ['user' => $this->user], function ($m) {
//
});
//$this->user->reminders()->create(...);
}
开发者ID:leloulight,项目名称:laravel_latest,代码行数:12,代码来源:SendReminderEmail.php
示例11: handle
/**
* Execute the job.
*
* @return void
*/
public function handle(Mailer $mailer)
{
$data = ['title' => trans('front/verify.ReviewEmail'), 'intro' => trans('front/verify.email-intro'), 'link' => trans('front/verify.email-link'), 'confirmation_code' => $this->reviewU->confirmation_rev_code];
$mailer->send('emails.auth.VerifyReview', $data, function ($message) {
$message->to($this->reviewU->email_reviewer, $this->reviewU->nombre_reviewer)->subject("Review Verify iWaNaTrip.com");
});
}
开发者ID:adrianicn,项目名称:IguanaTrip,代码行数:12,代码来源:VerifyReview.php
示例12: handle
/**
* Execute the job.
*
* @return void
*/
public function handle(Mailer $mailer)
{
$data = ['title' => "Invitación iWaNaTrip.com", 'nombrede' => $this->invitacion->invitacion_de, 'nombrepara' => $this->invitacion->invitacion_para];
$mailer->send('emails.auth.inviteFriend', $data, function ($message) {
$message->to($this->invitacion->correo, $this->invitacion->invitacion_para)->subject("Invitación iWaNaTrip.com");
});
}
开发者ID:adrianicn,项目名称:IguanaTrip,代码行数:12,代码来源:InviteFriendsMail.php
示例13: handle
/**
* Execute the job.
*
* @return void
*/
public function handle(Mailer $mailer)
{
$mailer->send('emails.mailer', ['user' => $this->user], function ($m) {
$m->from('[email protected]');
$m->to('[email protected]');
});
}
开发者ID:dingjc89,项目名称:laravel,代码行数:12,代码来源:SendReminderEmail.php
示例14: handle
/**
* Execute the job.
*
* @param Mailer $mailer
* @return void
*/
public function handle(Mailer $mailer)
{
$mailer->raw('You have received a new purchase of ' . $this->receipt->product->credits . ' credits for ' . $this->receipt->price, function ($message) {
$message->from('[email protected]', 'Whatscarrier');
$message->subject('You have received new purchase')->to('[email protected]');
});
}
开发者ID:natsu90,项目名称:whatscarrier-api,代码行数:13,代码来源:SendPurchaseEmail.php
示例15: handle
/**
* Execute the job.
*
* @param Mailer $mailer
* @return void
*/
public function handle(Mailer $mailer)
{
$message = $this->message;
return $mailer->send('emails.reminder', [], function ($m) use($message) {
$m->to('[email protected]', 'Lazada Reporter')->sender('[email protected]', 'Lazada Operator')->subject($message);
});
}
开发者ID:liubo2055,项目名称:test-lazada,代码行数:13,代码来源:SendEmail.php
示例16: handle
/**
* Execute the job.
*
* @param Mailer $mailer
*/
public function handle(Mailer $mailer)
{
$emailData = ['name' => $this->name, 'email' => $this->email, 'message' => $this->message];
$mailer->send('emails.contact', ['contactData' => $emailData], function ($mail) {
// Create the message
$mail->from('[email protected]', 'Portfolio Site')->to('[email protected]', 'Richard Nwankwo')->subject('You\'ve been contacted!');
});
}
开发者ID:RichNwankwo,项目名称:richnwan,代码行数:13,代码来源:SendContactEmail.php
示例17: submit
public function submit(Mailer $mailer, AskDestlerRequest $request)
{
$askdestlerRecipient = app('config')['witr.askdestler_recipient'];
$mailer->send('emails.askdestler', $request->all(), function ($message) use($askdestlerRecipient) {
$message->to($askdestlerRecipient['email'], $askdestlerRecipient['name'])->subject('WITR Ask Destler Submission');
});
return redirect()->route('askdestler')->with('success', 'Question Submitted!');
}
开发者ID:woolensculpture,项目名称:pulse,代码行数:8,代码来源:AskDestlerController.php
示例18: handle
public function handle(Mailer $mailer)
{
$email_data = array('name' => $this->attendee->firstname . ' ' . $this->attendee->lastname, 'event' => $this->attendee->event()->first()->title, 'payment' => $this->attendee->amount_paid);
$mailer->send('emails.invoice', $email_data, function ($m) {
$m->from('[email protected]', 'All Access RMS');
$m->to('[email protected]')->subject('Welcome to AllAccessRMS!');
});
}
开发者ID:dirtyblankets,项目名称:allaccessrms,代码行数:8,代码来源:SendInvoiceEmail.php
示例19: handle
/**
* Execute the job.
*
* @return void
*/
public function handle(Mailer $mailer)
{
$email = $this->email;
$data = '';
$mailer->send('emails.newsletter.latest', ['variable' => $data], function ($message) use($email) {
$message->subject('Nh?ng bài vi?t quan tâm!')->from('[email protected]', 'Admin http:://hoc.vet')->to($email, '');
});
}
开发者ID:khanhpnk,项目名称:hocvet,代码行数:13,代码来源:SendNewsletterEmail.php
示例20: handle
/**
* Execute the job.
* @return void
*/
public function handle(Mailer $mailer)
{
$mailer->send('emails.contact', $this->details, function ($message) {
$message->from($this->details['email'], $this->details['name']);
$message->subject('MrSwitch Contact Form - Entry');
$message->to("[email protected]");
});
}
开发者ID:aniljaiswal,项目名称:mrswitch,代码行数:12,代码来源:SendContactFormEmail.php
注:本文中的Illuminate\Contracts\Mail\Mailer类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论