From 5c5f7c582888806c644286ac3dff302d015dc25b Mon Sep 17 00:00:00 2001 From: omair saleh Date: Tue, 29 Sep 2020 16:17:01 +0800 Subject: [PATCH] send email to notify customer about china bankslip and instruction to upload po --- app/Notifications/UploadPo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Notifications/UploadPo.php b/app/Notifications/UploadPo.php index d54bd37f..d3306120 100644 --- a/app/Notifications/UploadPo.php +++ b/app/Notifications/UploadPo.php @@ -39,7 +39,7 @@ class UploadPo extends Notification $message = new MailMessage; $message->subject('Upload PO - Exchange'); $message->line('您好, 订单号 : '.$this->booking->id.' 的人民币汇款已成功。 请在这个网址 http://exchange.cief-malaysia.com/ 登录您的账号,并点击以下按钮,上载PO到系统. 谢谢.') - ->line('The payment to your supplier for the order no: '.$this->booking->id.' has been successful, please login to your account at http://exchange.cief-malaysia.com/ and then click on the button below upload your order\'s po'); + ->line('The payment to your supplier for the order no: '.$this->booking->id.' has been successful, please login to your account at http://exchange.cief-malaysia.com/ and then click on the button below to upload your order\'s po'); $message->action('Upload PO', 'https://exchange.cief-malaysia.com/booking/'.$this->booking->id.'/upload-po'); return $message; }