コード例 #1
0
def seller_new_ticket_notification(email):
    Email(email=email).seller_new_ticket_notification()
コード例 #2
0
def ticket_created(email, message, username, ticket_id):
    Email(email=email).ticket_created(message, username, ticket_id)
コード例 #3
0
def registration_email(email, verify):
    Email(email=email).welcome_email(activation_code=verify)
コード例 #4
0
def new_donation_email(email, amount):
    Email(email=email).donation_received(amount)
コード例 #5
0
def leave_feedback(email, username, order_id, order_hash):
    Email(email=email).leave_feedback(username, order_id, order_hash)
コード例 #6
0
def order_confirmation_attachment(email, order_id, file):
    Email(email=email).order_confirmation_attachment(order_id, file)
コード例 #7
0
def out_of_stock_email(email, product_name, order_id):
    Email(email=email).out_of_stock()
コード例 #8
0
def order_complete_items(email, items, order_id):
    Email(email=email).order_confirmation_items(items, order_id)
コード例 #9
0
def email_change_email(email, new_email):
    Email(email).email_change_email(new_email)
コード例 #10
0
def password_changed_email(email):
    Email(email=email).password_changed()
コード例 #11
0
def password_successfully_reset_email(email, password):
    Email(email=email).password_successfully_reset_email(password)
コード例 #12
0
def password_reset_email(email, password_code):
    Email(email=email).reset_password_email(password_code)