Skip to content

Commit

Permalink
change to personal email
Browse files Browse the repository at this point in the history
  • Loading branch information
miriamgoldman committed Aug 1, 2024
1 parent 1e92e70 commit a4ec3a0
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions private/scripts/multidev_alert/alert.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

$qs_alert = new MultidevPolicyAlert();
$qs_alert->sendMail();
$mailtest = mail('[email protected]', 'Testing Raw Email', 'This is a test of emailing from Quicksilver....');
echo $mailtest;

class MultidevPolicyAlert
{
Expand Down Expand Up @@ -90,14 +88,13 @@ public function sendMail()
'X-Mailer' => 'PHP/' . phpversion(),
'Content-Type' => 'text/html; charset=UTF-8'
];
$email = '[email protected]';
$email = '[email protected]';
$subject = "Code sync on $this->site_env Completed";
$message = "Code sync on $this->site_env has been created for the site $this->site_name with the SiteID $this->site_id";
$message = "Code sync on $this->site_env has been created for the site $this->site_name with the SiteID $this->site_id";

$sendMail = mail($email, $subject, $message, $headers);

echo( 'Message: ' . $message . PHP_EOL );


if ($sendMail) {
echo( 'Email Sent Successfully' . PHP_EOL) ;
} else {
Expand Down

0 comments on commit a4ec3a0

Please sign in to comment.