diff --git a/config.php.example b/config.php.example
index 982e551..9a6fbb8 100644
--- a/config.php.example
+++ b/config.php.example
@@ -7,7 +7,7 @@ $db_pass = 'dbpassword';
 $db_name = 'dbuser';
 
 # Address to use as the sender for reminder emails
-$reminder_sender = 'noreply@example.com';
+$sender = 'noreply@example.com';
 
 # Address to send cron error messages to
 $error_address = 'root@example.com';
diff --git a/cron.php b/cron.php
index d2170df..5e52909 100755
--- a/cron.php
+++ b/cron.php
@@ -7,7 +7,7 @@ require('./include/functions.php');
 
 header('Content-Type: text/html; charset=UTF-8');
 
-$cron = new Cron($reminder_sender, $error_address);
+$cron = new Cron($sender, $error_address);
 $cron->run();
 
 ?>