Skip to content

Commit

Permalink
Clean up email text, fixes #11
Browse files Browse the repository at this point in the history
  • Loading branch information
edorcutt committed May 1, 2013
1 parent f7b141e commit 2cfc0ff
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/js/forever.js
Original file line number Diff line number Diff line change
Expand Up @@ -303,8 +303,9 @@ $(document).ready(function() {
// --------------------------------------------
// send invitation email
var subject = "Kynetx Forever Invitation";
var body = "You have been invited to Forever " +
"http://devcloud.krlcode.com/?invite=" + json.token;
var myName = $('#myProfileName').val();
var body = myName + " has invited you to Forever, an evergreen addressbook based on Personal Clouds. Follow the link below to accept the invitation.\n\n" +
"http://forevr.us/?invite=" + json.token;
CloudOS_Send_Email(ename, email, subject, body,
function(json) {
console.dir(json);
Expand Down

0 comments on commit 2cfc0ff

Please sign in to comment.