equal
deleted
inserted
replaced
5 """ |
5 """ |
6 |
6 |
7 subject = "Sage Days India 25 - Registration" |
7 subject = "Sage Days India 25 - Registration" |
8 |
8 |
9 message = """ |
9 message = """ |
10 Dear %s %s, |
10 Dear %s %s, |
11 |
11 |
12 Thank you for registering on Sage Days 25, India. Since we have limited number of seats we will be mailing you the status of your registration shortly. |
12 Thank you for registering on Sage Days 25, India. Since we have limited number of seats we will be mailing you the status of your registration shortly. |
13 Meanwhile you may join the Sage Days mailing list/group at [http://groups.google.com/group/sagedays25]. |
13 Meanwhile you may join the Sage Days mailing list/group at [http://groups.google.com/group/sagedays25]. |
14 |
14 |
15 Registration Fee: |
15 Registration Fee: |
16 There is a registration fee of Rs.200/- and it can be paid on reporting at the conference. |
16 There is a registration fee of Rs.200/- and it can be paid on reporting at the conference. |
17 |
17 |
18 Accommodation: |
18 Accommodation: |
19 The accommodation for delegates is limited and hence you shall be notified on the status of your accommodation(if required) soon. |
19 The accommodation for delegates is limited and hence you shall be notified on the status of your accommodation(if required) soon. |
20 |
20 |
21 Queries: |
21 Queries: |
22 Feel free to contact us at sagedays@fossee.in for any queries. |
22 Feel free to contact us at sagedays@fossee.in for any queries. |
23 |
23 |
24 Thanking you, |
24 Thanking you, |
25 |
25 |
26 Sage Days India Team, |
26 Sage Days India Team, |
27 FOSSEE, IIT Bombay. |
27 FOSSEE, IIT Bombay. |
28 """%(first_name.title(), last_name.title()) |
28 """%(first_name.title(), last_name.title()) |
29 |
29 |
30 send_mail(subject, message, "sagedays@fossee.in", [email]) |
30 send_mail(subject, message, "sagedays@fossee.in", [email]) |
31 |
31 |