Code: Select all
public static String generateBirthdayHtml(String fullName) {
String firstName = extractFirstName(fullName);
System.out.println("First Name:"+firstName );
return "\n" +
"\n" +
" Birthday Greeting\n" +
" \n" +
" body { \n" +
" font-family: Arial, sans-serif; \n" +
" text-align: center; \n" +
" padding: 40px;\n" +
" background-color: #f9f9f9;\n" +
" }\n" +
" .greeting {\n" +
" font-size: 0.7rem;\n" +
" color: #d23c67;\n" +
" margin-bottom: 20px;\n"+
" font-weight: bold;\n" +
" position: absolute;\n"+
" top: 4.78rem;\n"+
" left: 53%;\n"+
" z-index: 99;\n"+
" }\n" +
" .birthday-img {\n" +
" width: 300px;\n" +
" max-width: 100%;\n" +
" position: absolute;\n" +
" margin: 0 auto;\n" +
" }\n" +
" \n" +
"\n" +
"\n" +
" Dear " + firstName + "\n" +
"
[img]\[/img]
\n" +
"\n" +
"";
}