skip to Main Content

email html color images changes in dark mode

On mobile devices, if dark mode is enabled, the icons change color in a strange way: on dark mode : on light mode : html code : <div class="social"> <a target="_blank" href="https://x.com/--myaccount-here--"><img alt="x" width="auto" height="auto" src="https://my-app-domin/images/social/twitter-x-line.png"></a> <a target="_blank" href="https://www.instagram.com/--myaccount-here--/"><img alt="instagram"…

VIEW QUESTION

Php – why SMTP error?. when i run on localhost it works. but when i put on my server SMTP error. can someone explains?

use PHPMailerPHPMailerPHPMailer; use PHPMailerPHPMailerException; use PHPMailerPHPMailerSMTP; //Load Composer's autoloader require 'vendor/autoload.php'; function send_password_reset($get_name, $get_email, $token) { $mail = new PHPMailer(true); $mail->SMTPDebug = 3; $mail->isSMTP(); $mail->Host = 'smtp.gmail.com'; $mail->SMTPAuth = true; $mail->Username = ''; $mail->Password = ''; $mail->SMTPSecure = 'tls'; $mail->Port…

VIEW QUESTION

Php versions – Laravel Mail::send fails to authenticate on the server but works locally

At some point recently the Mail::send function stopped working on our Laravel server. It still works when it's run locally though. Mail::send( 'emails.hello', $data, function ($message) use ($data) { $message->from('[email protected]', 'Admin'); $message->to('[email protected]', 'Admin') ->replyTo($data['email'], $data['name']) ->subject('Contact Request'); } ); The…

VIEW QUESTION
Back To Top
Search