假设没有。想要在给定日期的两天前通过使用 SQL Server 和 asp.net 的数据库自动在数据库中发送提醒(电子邮件)的用户。
请帮忙..
假设我有user_db
一个包含列的表
Auto_id, user_id, email_id, Inspection_Date, IsInterested
所以上面列的值是
1,user1,a@yahoo.com,30-01-2013,Yes
2,user2,b@yahoo.com,01-02-2013,Yes
3,user3,c@yahoo.com,30-01-2013,Yes
4,user4,d@yahoo.com,01-01-2013,Yes
如果用户有兴趣查看详细信息,则IsInterested
列中的值包含Yes
然后电子邮件警报应在Inspection_Date
自动给出的 2 天之前发送...
怎么做?