Generate E-Cards (Birthday wish, Anniversary, Thank you cards, etc) and send them to your loved ones with a Shared Link or a QR code.
- Enter name of the person to whom you want to send the card
- Provide the text you want to write on the card
- Click
See templates
and select a template - On selecting, a link and a QR code will be generated
- Share the link or the QR code
- Add new image in the folder of your choice inside
res
folder. You can also make a new folder. - Follow the numeric order and also name your image after a number. Then add the path to
path.js
file. In here,cardPicPaths
is in JSON format.
Example 1: Adding an image named 2.png
under anniversary
folder looks like this
...
"anniversary": {
"img":{
"1": "../res/anniversary/1.png",
"2": "../res/anniversary/2.png"
},
"title":"Happy Anniversary"
},
...
Example 2:
...
,
"your_new_folder_name": {
"img":{
"1": "../res/your_new_folder_name/1.png"
},
"title":"your_new_title_for_card"
}