+44 (0)1223 659363 contact@acep.org.uk

mailindividual

Mailing out now 🙂
[insert_php]
global $wpdb;
$emailid=$_POST[’emailid’];
$checksum=$_GET[‘checksum’];
if ($checksum==”OK”){

$subject = “Skills audit invitation for: “.$emailid;

$con1 = “You have been invited to complete a Skills Audit.

The purpose of this exercise is to provide individuals engaged on public consultation activities with a framework within which to assess their current skills and to prioritise their training needs.

Please click on (or follow) the link below in your web browser to proceed.

You can only submit your answers once but can come back to the survey at any time.
“;

//add_filter( ‘wp_mail_content_type’, ‘set_html_content_type’ );

$to=$emailid;
echo “Sending email to>”.$to;
//GETTETEGTEGTEGTGEGEGEGEGEGE
$user = get_user_by( ’email’, $to );
$fname=$user->user_login;
$uid=$user->ID;

$con2=”www.skillsaudit.co.uk/autologin?login=$fname&uid=$uid”;
$content=$con1.$con2;
$status = wp_mail($to, $subject, $content);

function set_html_content_type() {
return ‘text/html’;
}

remove_filter( ‘wp_mail_content_type’, ‘set_html_content_type’ );

} else {echo “Sorry, that’s not permitted.”;}
[/insert_php]