Its too simple. you can write your saving history code here:
def send_data(sender, instance, created, **kwargs):
from your_app.models import History
history = History()
history.employee_ID = instance.username
history.name = instance.first_name
....
history.save()