*/ class Ad_Rotate_Email_Addon_Activator{ /** * Short Description. (use period) * * Long Description. * * @since 1.0.0 */ public function activate() { /** * Set Options for Email template and Subject */ $mail = '
Dear {aduser},
'; $mail .='Thank you for advertising in the Company_name. Last month, your ad received {adimpression} impressions and {adclick} clicks. That is an excellent result and a lot of exposure. I have attached a report that shows your daily views and clicks for the month.
'; $mail .='{adreport}'; $mail .='Thanks and Regards,
'; $mail .='Your Company_name.
'; $subject ='Company_name Ad Report'; update_option( 'dsp_email_template', $mail); update_option( 'dsp_subject', $subject); } }