Subversion Repositories cheapmusic

Rev

Rev 31 | Rev 65 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 31 Rev 35
Line 49... Line 49...
49
        $mailContentText .= "To reset your password, visit the following link:\r\n\r\n$resetPassLink\r\n\r\n";
49
        $mailContentText .= "To reset your password, visit the following link:\r\n\r\n$resetPassLink\r\n\r\n";
50
        $mailContentText .= "Let us know at customerservice@FindCheapMusic.com in case of any query or feedback.\r\n";
50
        $mailContentText .= "Let us know at customerservice@FindCheapMusic.com in case of any query or feedback.\r\n";
51
        $mailContentText .= "\r\nRegards,\r\n" . SITE_NAME . " Team";
51
        $mailContentText .= "\r\nRegards,\r\n" . SITE_NAME . " Team";
52
		
52
		
53
		
53
		
54
		if(SMTP == TRUE){
54
		if(SMTP == true){
55
			$mail = PHPMailer_Init();
55
			$mail = PHPMailer_Init();
56
			
56
			
57
			// SMTP configuration
57
			// SMTP configuration
58
			$mail->isSMTP();
58
			$mail->isSMTP();
59
			$mail->Host = SMTP_HOST;
59
			$mail->Host = SMTP_HOST;
Line 141... Line 141...
141
                </html>';
141
                </html>';
142
 
142
 
143
        $mailContentText = "Thank you for signing up with Find Cheap Music! Please confirm your email address via this link:\r\n\r\n$emailVerifyLink\r\n\r\n";
143
        $mailContentText = "Thank you for signing up with Find Cheap Music! Please confirm your email address via this link:\r\n\r\n$emailVerifyLink\r\n\r\n";
144
        $mailContentText .= "\r\nWe look forward to serving you,\r\n" . SITE_NAME . " Team";
144
        $mailContentText .= "\r\nWe look forward to serving you,\r\n" . SITE_NAME . " Team";
145
 
145
 
146
	if(SMTP == TRUE){
146
	if(SMTP == true){
147
		$mail = PHPMailer_Init();
147
		$mail = PHPMailer_Init();
148
			
148
			
149
		// SMTP configuration
149
		// SMTP configuration
150
		$mail->isSMTP();
150
		$mail->isSMTP();
151
                $mail->CharSet = "text/html; charset=UTF-8;";
151
                $mail->CharSet = "text/html; charset=UTF-8;";