李帅

1.集成邮件发送

......@@ -84,6 +84,7 @@ class SendVerificationMessage implements ShouldQueue
$email = new \SendGrid\Mail\Mail();
$email->setFrom("hello@parlando.ink", "Parlando");
$email->setSubject("Verification Code");
$email->addTo($this->email, "Parlando User");
$email->addContent(
"text/html", "Please enter in the verification code input box: <strong>$code</strong><br/>(The code will expire in 30 minutes.)"
......